获得“回归”的最佳方式带有箭头图标的导航按钮?
苹果经常在导航控制器的“后退”按钮中使用左箭头图标,而不是“后退”一词或其他文本:
使用标准 SDK 似乎无法将图像分配给此特殊按钮。我错过了一些明显的东西吗?如果没有,实现这一目标的最有效方法是什么? (可以不用在多个状态下对整个按钮进行 Photoshop 处理来完成吗?)
谢谢。
Apple frequently uses a left arrow icon in the their navigation controller "back" button, rather than the word "back" or other text:
It doesn't seem possible to assign an image to this special button with the standard SDK. Am I missing something obvious? If not, what's the most effective way of achieving this? (Can it be done without Photoshopping the whole button in multiple states?)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用图像创建一个 UIBarButtonItem 并将其指定为视图控制器的 navigationItem 的
backBarButtonItem
属性。Create a UIBarButtonItem with the image and assign it as the
backBarButtonItem
property of your view controller's navigationItem.您可以使用
UIBarButtonItem
的-initWithImage:style:target:action:
并放置您的图像。You can use
-initWithImage:style:target:action:
ofUIBarButtonItem
and put your image instead.