更改 Interface Builder 创建的 UINavigationBar 的标题
一切都在标题中。我想更改我在视图类的“awakeFromNib”方法中使用界面生成器(导航栏+导航项)创建的 UINavigationBar 的标题。但我不知道如何使用 Interface Builder 创建链接。
你能帮助我吗?
All is in the title. I want to change the title of my UINavigationBar that I created with Interface Builder ( Navigation Bar + Navigation Item ) in the "awakeFromNib" methode of my view class. But I don't know how to create the link with Interface Builder.
Can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在加载视图时编写以下内容:
self.navigationItem.title = @"Your title";
应该可以正常工作:)
希望有帮助!
Simply write this when you're view is loaded:
self.navigationItem.title = @"Your title";
Should work fine :)
Hope that helps!