想要添加 UINavigationBar rightBarButton 就像“正在播放”一样ipod 的按钮,在视图转换之间不会消失

发布于 2024-08-17 14:18:52 字数 114 浏览 6 评论 0原文

我是 iPhone 开发人员的新手,我想添加一个按钮(注销),该按钮在每个视图的导航栏右侧保持固定。即,即使点击 TabBar 的选项卡,“注销”按钮也应保持固定。

任何帮助/建议将不胜感激。 谢谢

i am new to iphone dev, i want to add a button (sign out) which remains fixed on the navigation bar's right side for every view.i.e. even when tabs of TabBar are tapped, the Sign Out button should remain fixed.

Any help/suggestions would be appreciated.
Thanks

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

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

发布评论

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

评论(1

简美 2024-08-24 14:18:52

由于每个 UIViewController 都有自己的导航项(导航栏中的一组视图),因此您必须在每个视图控制器的 -viewDidLoad 方法中添加相同的按钮。如果您的应用程序中的任何地方都使用相同的按钮,则创建 UIViewController 的子类来执行此操作并在整个应用程序中重用该子类是有意义的。

Since each UIViewController has its own navigation item (a set of views in the navigation bar), you have to add the same button in each view controller's -viewDidLoad method. If the same button is used everywhere in your app, it makes sense to create a subclass of UIViewController which does just that and reuse this subclass throughout your app.

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