获取 uitextfield 中更改的文本
当用户按任意键时,我需要从文本字段获取文本。我正在尝试使用通知 UITextFieldTextDidChangeNotification 来获取文本,但无法成功。如何在更改时从 texfield 获取文本?我在 uitableview 中有文本字段。
I need to get text from a textfield when user presses any key. I am trying to use notification UITextFieldTextDidChangeNotification to get the text but not able to succeed. How to get the text from texfield on change? I have the textfields inside a uitableview.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以
在他们开始编辑时使用,或者
在每次按下键盘上的键时使用,或者
在 textviews 第一响应者辞职时使用。
您可以在填充表格视图时通过分配标签来跟踪各个文本字段,然后您就会知道哪个文本字段正在更改。
you could use
for when they start editing, or this
for every time they hit a key on the keyboard, or
for when the textviews first responder is resigned.
You can keep track of individual textfields by assigning tags when you populate the tableview, then you will know which text field is being changed.
最简单的方法是使用 AtomRiots 答案。毕竟,从文本字段中获取文本就是文本字段委托的用途。您可以为界面中的每个文本字段(甚至表格中的文本字段)设置不同的委托对象。
如果由于某种原因您想要一个任意对象来处理文本更改,您将注册该对象(自身)以获取通知。
如果您想侦听所有文本字段中的所有 UITextFieldTextDidChangeNotification:
如果您想侦听特定字段的所有通知
The easiest means is to use AtomRiots answer. After all, getting the text out of textfield is what the text field delegate is for. You can set a different delegate object for each textfield in you interface even those in tables.
If for some reason you wanted an arbitrary object to handle the text change you would register the object (self) for a the notification.
If you want to listen for all UITextFieldTextDidChangeNotification from all text fields:
If you want to listen for all notifications for a particular field