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.
我正在做一个自己的数字键盘。我想像在 iphone 中一样在文本字段上添加清除按钮。我怎样才能做到这一点 ?
我想要这张图片中的清除按钮:
如果您在代码中创建字段,您可以使用:
[textField setClearButtonMode:UITextFieldViewModeWhileEditing];
选项是
UITextFieldViewModeWhileEditing
UITextFieldViewModeUnlessEditing
UITextFieldViewModeAlways
UITextFieldViewModeNever
或者,如果您使用的是界面生成器: