美文网首页
修改navigationItem上的title 颜色和样式

修改navigationItem上的title 颜色和样式

作者: 小轩言 | 来源:发表于2016-04-28 15:58 被阅读1444次

废话不多说,直接上代码,alloc一个lable赋值给self.navigationItem.titleView就行了
UILabel *label = [[UILabel alloc] initWithFrame:CGRectZero];
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont boldSystemFontOfSize:30.0];
label.textAlignment = NSTextAlignmentCenter;
label.textColor = [UIColor whiteColor];
self.navigationItem.titleView = label;
label.text = @"广州洛维建筑信息技术咨询有限公司";
[label sizeToFit];

相关文章

网友评论

      本文标题:修改navigationItem上的title 颜色和样式

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