美文网首页
self.title 设置的值会同时覆盖self.navigat

self.title 设置的值会同时覆盖self.navigat

作者: 汗青fullstack | 来源:发表于2020-10-22 11:48 被阅读0次

    UINavBar、UITabBar下的self.title,self.navigationItem.title, 会默认被self.title的值覆盖

    SO:
    1.UINavBar、UITabBar 显示相同的“标题”
    在UIViewControler中设置:
    self.title = @"标题";
    
    1.UINavBar显示“标题”、UITabBar 显示的“菜单”
    在UIViewControler中设置:
    不要设置self.title,
    self.navigationItem.title = @"标题";
    self.tabbarItem.title = @"菜单"; //或者在其他地方单独设置tabbarItem也可以
    

    相关文章

      网友评论

          本文标题:self.title 设置的值会同时覆盖self.navigat

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