向 UITextField.rightView 添加书签按钮?
我有一个 UISearchBar,右侧带有书签按钮。像这样:
现在,我有一个 UITextField,左视图上有一个文本,右视图上有一个按钮:
< img src="https://i.sstatic.net/PDeyA.png" alt="在此处输入图像描述">
我使用默认按钮在 textField 上创建了按钮
[UIButton buttonWithType:UIButtonTypeContactAdd]
有没有办法在 UITextField 的 rightView 上添加书签按钮就像 UISearchBar 中的按钮???
谢谢。
i have an UISearchBar with bookmark button on right. Like this:
Now, i have a UITextField with a text on leftView and a button on right view:
I created button on textField using default buttons
[UIButton buttonWithType:UIButtonTypeContactAdd]
Is there a way to add in UITextField, on rightView, a bookmark button like the button in UISearchBar???
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的就是截取书签按钮的屏幕截图,如果需要的话在 gimp/photoshop 中清理它,然后将其用作自定义 UIButton 中的图像
编辑:像这样:非常简单,只需制作按钮并将其放置在界面中即可文本字段顶部的构建器
Easiest is just to take a screenshot of the bookmark button, clean it up in gimp/photoshop if need be, and use it as the image in a custom UIButton
Edit: like this: quite easy, just make the button and place it in interface builder on top of the text field