UIBarButtonItem :选择/取消选择一个项目
我有一个最喜欢的图像要显示在工具栏上的 UIBarButtonItem
上。
当未选择/选择此项时如何更改它?像这样的屏幕截图:
谢谢!
I have a favorite image to display on a UIBarButtonItem
, on an toolbar.
How do you do to change it when this item is unselected/selected? like this screenshot:
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UIBarButtonItems 创建两个数组:一个包含第一个图像,一个包含第二个图像。像这样:
然后在两组工具栏项目之间切换:
如果工具栏上不止一个按钮,则只需将其余项目添加到两个数组中即可。
You can make two arrays with UIBarButtonItems: one with the first image and one with the second image. Like this:
and then switch between the two sets of toolbar items with:
If you have more than just the one button on your toolbar then just add the rest of the items to both arrays.