文本字段启用清除按钮但不允许键盘出现
有没有办法让 UITextField 的文本只读,但仍然让清除按钮起作用?我的视图上有一组与文本字段交互的按钮,因此我不需要弹出键盘,但如果我禁用文本字段。清除按钮出现,但我不能再按它了。有没有办法做到这一点,或者我应该制作自己的清除按钮?
Is there a way to have a UITextField with the text read only but still let the clear button work? I have a set of buttons on my view that interact with the text field so i dont need the keyboard to pop but if i disable the text field. the clear button shows up but i cant press it anymore. Is there a way to do this or should i make my own clear button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
clearButtonMode
设置为 UITextFieldViewModeAlways,并让委托为textFieldShouldBeginEditing:
返回 NO。Set
clearButtonMode
to UITextFieldViewModeAlways, and have the delegate return NO fortextFieldShouldBeginEditing:
.