iOS编程:UITextField,监听unfocus事件

发布于 2024-10-31 03:03:54 字数 135 浏览 2 评论 0原文

如何监听 UITextFiekd 中的 unfocus 事件?

我将创建一种处理程序,当我的文本字段失去焦点时会激活该处理程序。例如,如果我单击应用程序的另一部分,该监听会自动注册 UITextField 内的文本。

谢谢。

How can I listen for unfocus event in UITextFiekd?

I would create a sort of handler that is activated when my text field lost the focus. For example, if I click into another part of the application, that listen registers the text inside the UITextField automatically.

Thank you.

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

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

发布评论

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

评论(3

南烟 2024-11-07 03:03:54

有一个 UITextFieldTextDidEndEditingNotification 当文本字段辞去第一响应者身份时。您还可以使用 委托方法 textFieldDidEndEditing:

There is a UITextFieldTextDidEndEditingNotification when the textfield resigns as first responder. You can also make use of the delegate method textFieldDidEndEditing:.

乖乖兔^ω^ 2024-11-07 03:03:54

您可以将自定义通知添加到默认通知中心单例。

首先在文本字段超级视图视图控制器中设置一个方法,其中包含当文本字段超出视图时要执行的代码:

-(void)textFieldLostFocus{
    //do some work here... 
}

然后将通知观察者添加到默认通知中心。 (您可以将其放入 viewDidLoad 中)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldLostFocus) 
                                                 name:@"TextFieldDidLoseFocus" object:nil];

然后在 UITextfield 的超级视图视图控制器中添加以下内容:

-(void)viewDidDisappear:(BOOL)animated{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"TextFieldDidLoseFocus" object:self userInfo:nil];
}

当视图超出视图时,通知中心将调用您的自定义方法。

You could add a custom notification to the default notification center singleton.

Start by setting up a method in your text fields superviews view controller that contains code that you want to be executed when your text field goes out of view:

-(void)textFieldLostFocus{
    //do some work here... 
}

Then add your notification observer to the default notification center. (u can put this in viewDidLoad)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldLostFocus) 
                                                 name:@"TextFieldDidLoseFocus" object:nil];

And then inside the UITextfield's superviews view controller add this:

-(void)viewDidDisappear:(BOOL)animated{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"TextFieldDidLoseFocus" object:self userInfo:nil];
}

When the view goes out of view, your custom method will be called by the notification center.

妖妓 2024-11-07 03:03:54

两步。首先,定义一个委托。其次,实现 textFieldDidEndEditing: 委托方法。该选择器在以下情况下被调用

文本字段放弃其第一个字段
响应者状态。

这是 iOS 中失去焦点的说法。该文档是 这里

Two steps. First, define a delegate. Second, implement the textFieldDidEndEditing: delegate method. This selector is called when

the text field resigns its first
responder status.

This is iOS-speak for losing focus. The documentation is here.

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