美文网首页
UITabBarItem title 和self.title设置

UITabBarItem title 和self.title设置

作者: 超人_22 | 来源:发表于2018-07-11 17:45 被阅读0次

    问题:当设置当前控制器标题时候self.title=@"标题"; ,当前tabbar标题 也跟着变了

    解决办法:
    原文
    http://stackoverflow.com/questions/21615637/how-to-change-uiviewcontroller-title-independent-of-tabbar-item-title

    经典部分:

    self.navigationItem.title = @"my title"; sets navigation bar title.

    self.tabBarItem.title = @"my title"; sets tab bar title.

    self.title = @"my title"; sets both of these.

    相关文章

      网友评论

          本文标题:UITabBarItem title 和self.title设置

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