iOS - IBAction - 用户在哪个文本字段中输入

发布于 2024-10-30 18:41:11 字数 236 浏览 1 评论 0原文

我的应用程序中有 2 个文本字段,它们都与我的“devTyping”IBAction 连接。 当“编辑更改”事件发生时,将调用此方法(我猜它是一个方法)。

我如何告诉我的方法,用户正在哪个文本字段中输入?

- (IBAction)devTyping {
    NSLog(@"How to know in which text field the user is typing?");
}

I have 2 text fields in my app and both are connected with my "devTyping" IBAction.
This method (I guess it is a method) will be called when the event "editing changed" happens.

How can I tell my method, in which text field the user is typing?

- (IBAction)devTyping {
    NSLog(@"How to know in which text field the user is typing?");
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不再让梦枯萎 2024-11-06 18:41:11

Take a look at this question, which should be an equivalent as to what you are asking :)

深海里的那抹蓝 2024-11-06 18:41:11

您可以这样声明该方法:

- (IBAction)devTyping:(UITextField*)sender {
     NSLog(@"The user is typing in text field %d",sender.tag);
}

并在 Interface Builder 中为每个文本字段分配一个标签,它只是一个用于标识文本字段(或任何其他元素)的数字。

You could declare the method like this:

- (IBAction)devTyping:(UITextField*)sender {
     NSLog(@"The user is typing in text field %d",sender.tag);
}

And assign each textfield a tag in Interface Builder, which is just a number to identify the text field (or any other element).

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