如何在 UITextField 中显示这个白色的小 x 圆圈,以便用户可以删除文本?
有些应用程序有一个漂亮的白色小圆圈,其中 UITextField 中有一个灰色的 x。如何将其添加到 UITextField 并在点击时删除文本?
Some apps have this nice little white circle with an gray x in there UITextField. How can I add this to an UITextField and delete the text when it is tapped?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要添加这样的按钮,您可以使用 UITextField 的 clearButtonMode 属性。
代码将是这样的:
To add a button like this, you can use the clearButtonMode property of an UITextField.
The code will be like this:
查看 clearButtonMode 属性。
Check out the clearButtonMode property.