gpt4 book ai didi

ios - 来自自定义类问题的 KeyboardWillShowNotification

转载 作者:行者123 更新时间:2023-11-29 13:14:17 24 4
gpt4 key购买 nike

我有一个带有文本字段的自定义 UITableViewCell。单元格的文本字段设置为调用委托(delegate)函数。里面

  -(BOOL)textFieldShouldReturn:(UITextField *)textField{

[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillShowNotification
object:nil];

[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];



if(textField == fromTF){

fromTF.text = [[[fromTF.text substringToIndex:2] stringByAppendingString:@":"] stringByAppendingString:[fromTF.text substringFromIndex:2]];
[toTF becomeFirstResponder];
return YES;
}
if(textField == toTF){
[toTF resignFirstResponder];
[intTF becomeFirstResponder];
return YES;

}

return YES;
}

这是在我的自定义单元格中调用的委托(delegate)方法。但是在调用时,按下“返回”键时不会删除 UIKeyBoardWillHideNotification addobserver 对象。有什么办法可以解决这个问题吗?

最佳答案

这样试试

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField{

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

并查看此链接 textFieldShouldBeginEditing + UIKeyboardWillShowNotification + OS 3.2

它可能对你有帮助。

关于ios - 来自自定义类问题的 KeyboardWillShowNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16228829/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com