我使用日期选择器作为文本字段的输入 View 。
在 View 中会出现我添加了 UIKeyboardWillShowNotification
。
我的问题是,当要看到日期选择器时,它也会出现 KeyboardWillShowNotification
方法。我如何区分看到键盘或看到日期选择器,因为我需要根据它调整表格 View 的大小
我已经在 textfieldDidBeginEditing
cell.txtField.inputView = datePicker;
您可以实现 (BOOL)textFieldShouldBeginEditingUITextField *)textField
委托(delegate),然后保存您正在编辑文本字段的局部变量,例如
- (BOOL)textFieldShouldBeginEditingUITextField *)textField {
self.editingTextfield = YES;
}
并在您的 (BOOL)textFieldShouldEndEditingUITextField *)textField
中将该标志设置为 false
-(BOOL)textFieldShouldEndEditingUITextField *)textField {
self.editingTextfield = NO;
}
在您的 KeyboardWillShowNotification
通知中,您可以检查该标志以查看哪个控件发出了键盘
关于ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23759360/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |