更改 leftBarButtonItem 的外观

发布于 2024-12-18 18:59:20 字数 385 浏览 3 评论 0原文

可能的重复:
创建左箭头按钮(例如UIToolbar 上的 UINavigationBar 的“后退”样式)

我在导航栏上做了一个高度自定义的按钮,有时是后退按钮,但有时是刷新(以多种方式)按钮。所以我不得不使用 leftBarButtonItem 而不是 backBarButtonItem。当它作为一个“后退按钮”时,有什么好方法让它看起来像一个“后退按钮”?

Possible Duplicate:
Creating a left-arrow button (like UINavigationBar's “back” style) on a UIToolbar

I did a highly customized button on navigation bar, which is a back button sometimes but a refresh (in a variety of ways) button some other times. So I had to go with leftBarButtonItem instead of backBarButtonItem. What's a good way to make it look like a "back button" when it serves as one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜巴黎 2024-12-25 18:59:20

当需要作为后退按钮时,您可以使用 backBarButtonItem。当它变为刷新时,您可以使用 self.navigationItem.hidesBackButton = YES ,然后设置您自己的 leftBarButtonItem 。

如果您想要动画,请尝试:

[self.navigationItem setHidesBackButton:YES animated:YES];
[self.navigationItem setLeftBarButtonItem:desiredBarButtonItem animated:YES];

You can use the backBarButtonItem when it needs to be a back button. When it changes to a refresh, you can use self.navigationItem.hidesBackButton = YES and then set your own leftBarButtonItem.

If you'd like animation, try:

[self.navigationItem setHidesBackButton:YES animated:YES];
[self.navigationItem setLeftBarButtonItem:desiredBarButtonItem animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文