想要添加 UINavigationBar rightBarButton 就像“正在播放”一样ipod 的按钮,在视图转换之间不会消失
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于每个 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.