- 2010年3月12日 12:26
- iPhone
2度ほど忘れたので、UIKeyboardを出す/消すのメモ。
画面表示と同時にキーボードを出す。およびテキストフィールドにフォーカスする。
- (void)viewDidLoad {
[super viewDidLoad];
UITextField *textField = [[UITextField alloc]init];
[self.view addSubview:textField];
//これでキーボード出す
[textField becomeFirstResponder];
}
//テキスト編集開始時にリターンキーを設定
//リターンを押すと- (BOOL)textFieldShouldReturn:(UITextField *)textFieldが呼ばれる
- (void)textFieldDidBeginEditing:(UITextField *)textField{
textField.returnKeyType = UIReturnKeyDone;
}
UITextFieldDelegate プロトコルをヘッダーファイルに追加して
テキスト入力後、リターンキーでキーボードを消す
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
[textField resignFirstResponder];
return YES;
}
Comments:0
Trackbacks:0
- TrackBack URL for this entry
- http://www.hirano-dept.com/mt/mt-tb.cgi/89
- Listed below are links to weblogs that reference
- iPhone UIKeyboard メモ from 袖触れ合うも多少の縁