OStack程序员社区-中国程序员成长平台

标题: ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 22:17
标题: ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现

我使用日期选择器作为文本字段的输入 View 。 在 View 中会出现我添加了 UIKeyboardWillShowNotification

我的问题是,当要看到日期选择器时,它也会出现 KeyboardWillShowNotification 方法。我如何区分看到键盘或看到日期选择器,因为我需要根据它调整表格 View 的大小

我已经在 textfieldDidBeginEditing

中分配了 inputview
cell.txtField.inputView = datePicker; 



Best Answer-推荐答案


您可以实现 (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