iTofu / LCTabBarController

A amazing and highly customized tabBarController! You could almost customize 100% properties with LCTabBarController!
https://LeoDev.me
MIT License
385 stars 81 forks source link

tabBarItem title不应该跟着页面的title的改变而改变 #16

Closed dippac closed 7 years ago

iTofu commented 7 years ago
@interface ViewController

- (void)func {
    self.navigationItem.title = @"a"; // 会对导航栏标题生效
    self.tabBarItem.title = @"b"; // 会对标签页标题生效
    self.title = @"c"; // 会同时对导航栏和标签页标题生效,相当于同时写了上面两句代码
}

@end