删除navigationItem.titleView后恢复navigationItem.title
我的应用程序有 2 个选项卡(tabA 和 tabB),基于我设置 navigationItem 的位置当调用
转换为 - viewWillAppear:
时,将 tabB 的 .titleViewUIImageView
。
tabB 的默认行为是简单地显示标题,例如:
问题是当位置更改并且我删除 UIImageView
navigationItem.titleView
(使用 -removeFromSuperview
)时,默认标题具有也消失并试图设置它与:
self.navigationItem.title = @"TITLE";
不起作用。关于如何解决这个问题有什么想法吗?
My App has 2 tabs (tabA and tabB), based on location the I set the navigationItem.titleView
of tabB to a UIImageView
when - viewWillAppear:
is called.
The default behaviour of tabB is to simply display a title, e.g:
The issue is when the location changes and I remove the UIImageView
navigationItem.titleView
(using - removeFromSuperview
), the default title has also disappeared and trying to set it with:
self.navigationItem.title = @"TITLE";
Does not work. Any ideas on how to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需设置:
将恢复文本标题。
Simply setting:
Will restore the text title.