navigationItem.title不存在?带 splitviewcontroller (ipad)
如何使用基于拆分视图控制器的项目在导航栏中编写标题或添加栏按钮项?
我在 viewDidLoad 中尝试了 self.navigationItem.title = @"allo";
,但导航栏中仅显示弹出按钮。
我错过了什么吗?
谢谢
how do you write a title or add a barbuttonitem in the navigation bar with a split view controller-based project?
i tried self.navigationItem.title = @"allo";
in viewDidLoad, but only the popover button is shown in the nav bar.
Am i missing something?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在详细视图控制器中查找此方法。
您可以将 UIBarButtonItem 添加到上述方法提供的 items 数组中。另请查看此链接修复 UISplitViewController 模板
它将向您展示如何进一步自定义库存 UISplitViewController 模板。
Look in the detail view controller for this method.
You can add a UIBarButtonItem to the items array that the above method provides. Also take a look at this link Fixing the UISplitViewController Template
It will show you how to further customize the stock UISplitViewController template.