我有一个带文本字段的自定义UITableViewCell。单元格的文本字段设置为调用委托函数。 里面
-(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;
}
这是在我的自定义单元格中调用的委托方法。但是在调用时,按下“返回”键时不会删除UIKeyBoardWillHideNotification addobserver对象。有没有办法解决这个问题?
答案 0 :(得分:1)
试试这个
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField{
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}
并查看此链接textFieldShouldBeginEditing + UIKeyboardWillShowNotification + OS 3.2
它可能对你有所帮助。
答案 1 :(得分:0)
你好Ganesh谢谢你的回答。我删除了resignFirstResponder并将firstResponder直接传递给下一个文本字段。这样可以防止键盘消失。