UITextField 委托方法未被调用 (shouldChangeCharactersInRange)
即使我更改了文本字段中的文本,也不会调用此 UITextField 委托方法。 当键盘语言设置为日语/中文输入并且我从建议的单词列表中选择单词时,就会发生这种情况。
- (BOOL) textField : (UITextField *) textField shouldChangeCharactersInRange : (NSRange) range replacementString : (NSString *) string
我不确定这是否是 iOS 中的一个错误。
有人遇到同样的问题吗?
This UITextField delegate method is not being called even I changed the text in the textfield.
This happened when the keyboard language is set to Japanese/Chinese input and if I choose the words from the suggested list of words.
- (BOOL) textField : (UITextField *) textField shouldChangeCharactersInRange : (NSRange) range replacementString : (NSString *) string
I am not sure if this is a bug in iOS.
Does anybody encounter the same problem??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我确实认为这是 iOS 4.x 中的一个错误,并且似乎已在 iOS 5 beta 中修复。
由于 iOS 5 的保密协议,我无法透露更多信息。希望这有帮助。
I do think this is a bug in iOS 4.x and it seems to have been fixed in the iOS 5 beta.
Due to the NDA about iOS 5 I can't tell more about it. Hope this help.
在iOS 4.x中这可能不是一个bug。即使在iOS 9.x中,这种情况仍然存在。
对于日语/中文或任何其他可以从键盘上方的建议单词列表中选择单词的语言,
不会调用此委托方法。UITextfield 的文本直接附加所选单词。
解决方法是使用 UITextFieldTextDidChangeNotification:
受影响的文本字段存储在通知的对象参数中。不使用 userInfo 字典。
并且不要忘记在 dealloc 时从
NSNotificationCenter
中删除 self :It maybe not a bug in iOS 4.x.Even in iOS 9.x,this situation still exists.
For Japanese/Chinese or any other language that can choose the words from the suggested list of words above the keyboards,this delegate method
would not be called.The text of UITextfield is appended by the choosed word directly.
A workaround is to use
UITextFieldTextDidChangeNotification
:The affected text field is stored in the object parameter of the notification. The userInfo dictionary is not used.
And don't forget to remove self from
NSNotificationCenter
when dealloc :