iphone sdk 中文本字段的问题
我有两个文本字段,如果在其中输入超过 100 个字符的文本,则仅当我点击第二个文本字段时才需要显示警报。任何人都可以建议我如何执行此操作。
感谢大家, 莫尼什.
I am having two textfields in which if enter the text more than 100 characters I need to display the alert only when I tap onto the second textfield.Can any one suggest me how to do this.
Thanks to all,
Monish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建两个 UITextField,并将其标签属性分别设置为 1 和 2。接下来,在头文件中实现 UITextFieldDelegate 协议,如下所示;
然后在您的实现文件中,使用 textFieldDidBeginEditing 委托方法检查长度并显示警报消息。例如
Create two UITextFields, and set their tag properties to 1 and 2 respectively. Next, implement the
UITextFieldDelegate
protocol in your header file, like so;And then in your implementation file, use the textFieldDidBeginEditing delegate method to check the length and display alert messages. E.g