UIViewController的title属性

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属性)