UITextField 委托方法未被调用 (shouldChangeCharactersInRange)

发布于 2024-11-30 15:49:57 字数 299 浏览 1 评论 0原文

即使我更改了文本字段中的文本,也不会调用此 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明明#如月 2024-12-07 15:49:57

我确实认为这是 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.

秋日私语 2024-12-07 15:49:57

在iOS 4.x中这可能不是一个bug。即使在iOS 9.x中,这种情况仍然存在。
对于日语/中文或任何其他可以从键盘上方的建议单词列表中选择单词的语言,

- (BOOL) textField : (UITextField *) textField shouldChangeCharactersInRange : (NSRange) range replacementString : (NSString *) string

不会调用此委托方法。UITextfield 的文本直接附加所选单词。

解决方法是使用 UITextFieldTextDidChangeNotification:

 [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(checkForTextfield:)
                                             name:UITextFieldTextDidChangeNotification
                                           object:nil];    

受影响的文本字段存储在通知的对象参数中。不使用 userInfo 字典。

-  (void)checkForTextfield:(NSNotification *)noti{
    UITextField* textField = noti.object;
    //do whatever you want with the UITextfield
}  

并且不要忘记在 dealloc 时从 NSNotificationCenter 中删除 self :

- (void)dealloc{
   [[NSNotificationCenter defaultCenter] removeObserver: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

- (BOOL) textField : (UITextField *) textField shouldChangeCharactersInRange : (NSRange) range replacementString : (NSString *) string

would not be called.The text of UITextfield is appended by the choosed word directly.

A workaround is to use UITextFieldTextDidChangeNotification:

 [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(checkForTextfield:)
                                             name:UITextFieldTextDidChangeNotification
                                           object:nil];    

The affected text field is stored in the object parameter of the notification. The userInfo dictionary is not used.

-  (void)checkForTextfield:(NSNotification *)noti{
    UITextField* textField = noti.object;
    //do whatever you want with the UITextfield
}  

And don't forget to remove self from NSNotificationCenter when dealloc :

- (void)dealloc{
   [[NSNotificationCenter defaultCenter] removeObserver:self];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文