iOS编程:UITextField,监听unfocus事件
如何监听 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个 UITextFieldTextDidEndEditingNotification 当文本字段辞去第一响应者身份时。您还可以使用 委托方法 textFieldDidEndEditing:。
There is a UITextFieldTextDidEndEditingNotification when the textfield resigns as first responder. You can also make use of the delegate method textFieldDidEndEditing:.
您可以将自定义通知添加到默认通知中心单例。
首先在文本字段超级视图视图控制器中设置一个方法,其中包含当文本字段超出视图时要执行的代码:
然后将通知观察者添加到默认通知中心。 (您可以将其放入
viewDidLoad
中)然后在 UITextfield 的超级视图视图控制器中添加以下内容:
当视图超出视图时,通知中心将调用您的自定义方法。
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:
Then add your notification observer to the default notification center. (u can put this in
viewDidLoad
)And then inside the UITextfield's superviews view controller add this:
When the view goes out of view, your custom method will be called by the notification center.
两步。首先,定义一个委托。其次,实现
textFieldDidEndEditing:
委托方法。该选择器在以下情况下被调用这是 iOS 中失去焦点的说法。该文档是 这里。
Two steps. First, define a delegate. Second, implement the
textFieldDidEndEditing:
delegate method. This selector is called whenThis is iOS-speak for losing focus. The documentation is here.