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.
谁能让我知道如何在目标 c 的 UITextField 中引入清晰的选项('X' 符号)?我附上了一张图片供您阅读。我希望图像中显示的“x”符号清除文本。
myUITextField.clearButtonMode = UITextFieldViewModeWhileEditing;
如果您使用的是 Interface Builder,当您选择文本字段时,在属性检查器(右侧)中,应该有一个Clear Button. 其中一个选项是“编辑时出现”,以及其他一些选项。
Clear Button
在代码中,请参阅@Shashank 的答案。