美文网首页
iOS 修改导航栏文字

iOS 修改导航栏文字

作者: 16哥哥 | 来源:发表于2016-06-21 11:48 被阅读819次

    自定义导航栏文字:

    UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];

    title.text = @"title3";

    title.textAlignment = NSTextAlignmentCenter;

    title.textColor = [UIColor redColor];

    self.navigationItem.titleView = title;

    相关文章

      网友评论

          本文标题:iOS 修改导航栏文字

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