1.NSMutableString *receiver = [[NSMutableString alloc] init];
[receiver appendFormat:@"%@",[self.receiverArray objectAtIndex:i]];
2.[self.textfield becomeFirstResponder] ->將焦點(diǎn)移到NSTextField上,這時(shí)虛擬鍵盤(pán)將會(huì)出現(xiàn)
[self.textfield resignFirstResponder] ->將焦點(diǎn)移出NSTextField,這時(shí)虛擬鍵盤(pán)將會(huì)關(guān)閉
becomeFirstResponder ->將焦點(diǎn)移動(dòng)控件上
resignFirstResponder ->將焦點(diǎn)移出控件
3.viewWillAppear:
Called when the view is about to made visible. Default does nothing
視圖即將可見(jiàn)時(shí)調(diào)用。默認(rèn)情況下不執(zhí)行任何操作
viewDidAppear:
Called when the view has been fully transitioned onto the screen. Default does nothing
視圖已完全過(guò)渡到屏幕上時(shí)調(diào)用
viewWillDisappear:
Called when the view is dismissed, covered or otherwise hidden. Default does nothing
視圖被駁回時(shí)調(diào)用,覆蓋或以其他方式隱藏。默認(rèn)情況下不執(zhí)行任何操作
viewDidDisappear:
Called after the view was dismissed, covered or otherwise hidden. Default does nothing
視圖被駁回后調(diào)用,覆蓋或以其他方式隱藏。默認(rèn)情況下不執(zhí)行任何操作
loadView;
This is where subclasses should create their custom view hierarchy if they aren't using a nib. Should never be called directly.
這是當(dāng)他們沒(méi)有正在使用nib視圖頁(yè)面,子類(lèi)將會(huì)創(chuàng)建自己的自定義視圖層。絕不能直接調(diào)用。
viewDidLoad;
Called after the view has been loaded. For view controllers created in code, this is after -loadView. For view controllers unarchived from a nib, this is after the view is set.
在視圖加載后被調(diào)用,如果是在代碼中創(chuàng)建的視圖加載器,他將會(huì)在loadView方法后被調(diào)用,如果是從nib視圖頁(yè)面輸出,他將會(huì)在視圖設(shè)置好 后被調(diào)用。
[receiver appendFormat:@"%@",[self.receiverArray objectAtIndex:i]];
2.[self.textfield becomeFirstResponder] ->將焦點(diǎn)移到NSTextField上,這時(shí)虛擬鍵盤(pán)將會(huì)出現(xiàn)
[self.textfield resignFirstResponder] ->將焦點(diǎn)移出NSTextField,這時(shí)虛擬鍵盤(pán)將會(huì)關(guān)閉
becomeFirstResponder ->將焦點(diǎn)移動(dòng)控件上
resignFirstResponder ->將焦點(diǎn)移出控件
3.viewWillAppear:
Called when the view is about to made visible. Default does nothing
視圖即將可見(jiàn)時(shí)調(diào)用。默認(rèn)情況下不執(zhí)行任何操作
viewDidAppear:
Called when the view has been fully transitioned onto the screen. Default does nothing
視圖已完全過(guò)渡到屏幕上時(shí)調(diào)用
viewWillDisappear:
Called when the view is dismissed, covered or otherwise hidden. Default does nothing
視圖被駁回時(shí)調(diào)用,覆蓋或以其他方式隱藏。默認(rèn)情況下不執(zhí)行任何操作
viewDidDisappear:
Called after the view was dismissed, covered or otherwise hidden. Default does nothing
視圖被駁回后調(diào)用,覆蓋或以其他方式隱藏。默認(rèn)情況下不執(zhí)行任何操作
loadView;
This is where subclasses should create their custom view hierarchy if they aren't using a nib. Should never be called directly.
這是當(dāng)他們沒(méi)有正在使用nib視圖頁(yè)面,子類(lèi)將會(huì)創(chuàng)建自己的自定義視圖層。絕不能直接調(diào)用。
viewDidLoad;
Called after the view has been loaded. For view controllers created in code, this is after -loadView. For view controllers unarchived from a nib, this is after the view is set.
在視圖加載后被調(diào)用,如果是在代碼中創(chuàng)建的視圖加載器,他將會(huì)在loadView方法后被調(diào)用,如果是從nib視圖頁(yè)面輸出,他將會(huì)在視圖設(shè)置好 后被調(diào)用。