Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能以某种方式从 UITextField 捕获一个清晰的按钮方法,然后给它更多的事情要做,比如在地图上清晰的注释等?
我需要使用清除按钮附加哪种方法?
感谢您的帮助和快速答复
您可以将自己设置为文本字段委托并实现textField:shouldChangeCharactersInRange:replacementString:。如果range是全范围textField.text并且替换string等于@""则为清操作。
textField:shouldChangeCharactersInRange:replacementString:
range
textField.text
string
@""
请注意,用户手动选择所有文本并在键盘上按退格键将产生相同的结果。