美文网首页
UIViewController的title属性

UIViewController的title属性

作者: rgcyc | 来源:发表于2019-08-05 17:20 被阅读0次

If the view controller has a valid navigation item or tab-bar item, assigning a value to this property updates the title text of those objects.

如果一个 VC 同时有导航栏和标签栏,那么当给 title 赋值时,会同时修改这两个标题。

如果只想单独设置某一个,可分别调用:

1. self.navigationItem.title: 设置 VC 顶部导航栏的标题
2. self.tabBarItem.title: 设置 VC 底部标签栏的标题

如果需要同时设置,调用:

self.title: 同时修改上述两处的标题

相关文章

网友评论

      本文标题:UIViewController的title属性

      本文链接:https://www.haomeiwen.com/subject/ixzmdctx.html