将按钮置于导航栏中居中

发布于 2024-10-20 21:52:17 字数 309 浏览 0 评论 0原文

我想在导航栏中居中放置一个按钮,该按钮当前定义为 rightBarButtonItem :

UIBarButtonItem *audioBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPlay target:self action:@selector(toggleAudioPlayback:)];
self.navigationItem.rightBarButtonItem = audioBtn;
[audioBtn release];

I would like to center a button in my navigationBar, which is currently defined as a rightBarButtonItem :

UIBarButtonItem *audioBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemPlay target:self action:@selector(toggleAudioPlayback:)];
self.navigationItem.rightBarButtonItem = audioBtn;
[audioBtn release];

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

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

发布评论

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

评论(1

白馒头 2024-10-27 21:52:17

您可以使用导航项的 .titleView 属性 - 但您需要为此创建自己的资产(您将无法使用 UIBarButtonItem)。来自苹果的文档:

...(titleViews) 可以包含按钮。使用
UIButton 中的buttonWithType: 方法
类向您的自定义添加按钮
以导航风格查看
酒吧。自定义标题视图居中
在导航栏上,可能是
调整大小以适合。

You can use the .titleView property of your navigation item - but you'll need to create your own assets for this (you won't be able to use a UIBarButtonItem). From Apple's docs:

...(titleViews) can contain buttons. Use
the buttonWithType: method in UIButton
class to add buttons to your custom
view in the style of the navigation
bar. Custom title views are centered
on the navigation bar and may be
resized to fit.

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