textDidEndEditing:Objective c 示例
所以我知道你必须将其放入 .h 文件中:
- (void)textDidEndEditing:(NSNotification *)aNotification
但是我在 .m 文件中调用什么?如何显示文本已在多个 NSTextFields 之一中完成编辑?
我在网上查了一下,但如何正确使用它似乎很模糊。
有什么想法吗? 以利亚
So I know you have to put this in the .h file:
- (void)textDidEndEditing:(NSNotification *)aNotification
BUT what do I call in the .m file?? How do I show that text is done editing in one of several NSTextFields?
I looked around on the internet, but it seems pretty vague on how to use it correctly.
Any ideas?
Elijah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下
UITextFieldDelegate
。它将为您提供所需的方法回调,例如textfieldDidEndEditing
。它应该传递文本字段,然后您可以通过对象比较或标记值来识别该文本字段。更新
委托回调的代码示例。请务必将
UITextFieldDelegate
添加到您的 .h 文件中。还要在代码或 IB 中指定 textField 的委托属性textField.delegate = self
。Take a look at
UITextFieldDelegate
. It will give you the method callbacks you want, such astextfieldDidEndEditing
. It should pass the text field which you can then identify by object comparison or tag value.UPDATE
Code sample for the delegate callback. Be sure to add
UITextFieldDelegate
to your .h file. Also specific your textField's delegate property,textField.delegate = self
in your code or in IB.