iPhone 中 UITextfield 字符限制
在我的应用程序中,我需要在用户输入第四个字符后立即发布 uitextfield 的值。 当用户输入第四个字符时如何获取uitextfield的值。 谁能告诉我我该怎么做?
In My app i need to post the value of uitextfield as soon as user enter the fourth character.
how can get the value of uitextfield when the user enter the fourth character.
Can any one tell me how can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 UITextField 的委托设置为视图控制器/文件的所有者,并使用 textViewDidChange 委托方法。
Set the UITextField's delegate to the view controller/file's owner and use the textViewDidChange delegate method.
你可以使用 UITextField 委托方法 -
每当用户输入字符时它都会调用..
u can use UITextField delegate method -
it calls whenever user enter char ..