textDidEndEditing:Objective c 示例

发布于 2024-09-07 23:36:01 字数 220 浏览 4 评论 0原文

所以我知道你必须将其放入 .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 技术交流群。

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

发布评论

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

评论(1

圈圈圆圆圈圈 2024-09-14 23:36:01

看一下 UITextFieldDelegate。它将为您提供所需的方法回调,例如 textfieldDidEndEditing。它应该传递文本字段,然后您可以通过对象比较或标记值来识别该文本字段。

更新

委托回调的代码示例。请务必将 UITextFieldDelegate 添加到您的 .h 文件中。还要在代码或 IB 中指定 textField 的委托属性 textField.delegate = self

- (void)textFieldDidEndEditing:(UITextField *)textField {
  if (textField.returnKeyType == UIReturnKeyDone) {
    // the textfield with the Done return key is what I care about
    self.value2 = [textField.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
  }
}

Take a look at UITextFieldDelegate. It will give you the method callbacks you want, such as textfieldDidEndEditing. 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.

- (void)textFieldDidEndEditing:(UITextField *)textField {
  if (textField.returnKeyType == UIReturnKeyDone) {
    // the textfield with the Done return key is what I care about
    self.value2 = [textField.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文