我的 View 中有两个文本字段。我是用 IB 做的。在第二个文本字段中,我正在使用操作表
在 textField1 中输入文本后,我在文本 Field-2 中。在第二个文本字段中,我使用带有选择器的操作表来选择日期。所以我在打开操作表之前退出了 textfield -2 键盘。在我试图退出键盘时关闭操作表后,它没有返回。 我用过
- (BOOL)textFieldShouldReturnUITextField *)textField{
[textfield1 resignFirstResponder];
return YES;
}
辞职 textfield1 ..
- (void) viewDidLoad
{
//don't forget to add <UITextFieldDelegate> in your .h
firstTextField.delegate=self;
secondTextField.delegate=self;
}
- (BOOL)textFieldShouldBeginEditingUITextField *)textField
{
if(textField.tag==2)
{
//Here you can call function to view your datepicker
return NO; //Will not open keyboard for second textfield.
}
return YES;
}
- (BOOL)textFieldShouldReturnUITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
关于iphone - 访问其他文本字段时如何使其他文本字段的键盘消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9781941/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |