获得“回归”的最佳方式带有箭头图标的导航按钮?

发布于 2024-10-21 08:17:40 字数 235 浏览 9 评论 0原文

苹果经常在导航控制器的“后退”按钮中使用左箭头图标,而不是“后退”一词或其他文本:

在此处输入图像描述

使用标准 SDK 似乎无法将图像分配给此特殊按钮。我错过了一些明显的东西吗?如果没有,实现这一目标的最有效方法是什么? (可以不用在多个状态下对整个按钮进行 Photoshop 处理来完成吗?)

谢谢。

Apple frequently uses a left arrow icon in the their navigation controller "back" button, rather than the word "back" or other text:

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一指流沙 2024-10-28 08:17:40

使用图像创建一个 UIBarButtonItem 并将其指定为视图控制器的 navigationItem 的 backBarButtonItem 属性。

Create a UIBarButtonItem with the image and assign it as the backBarButtonItem property of your view controller's navigationItem.

后来的我们 2024-10-28 08:17:40

您可以使用 UIBarButtonItem-initWithImage:style:target:action: 并放置您的图像。

- (id)initWithImage:(UIImage *)image
              style:(UIBarButtonItemStyle)style
             target:(id)target
             action:(SEL)action

You can use -initWithImage:style:target:action: of UIBarButtonItem and put your image instead.

- (id)initWithImage:(UIImage *)image
              style:(UIBarButtonItemStyle)style
             target:(id)target
             action:(SEL)action
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文