美文网首页
swift navigation title 标题颜色代码设置

swift navigation title 标题颜色代码设置

作者: 做人要简单 | 来源:发表于2018-03-13 11:10 被阅读54次

简单记录,为后续方便查找,仅有代码片段
可以放在ViewController的基类中

if let bar = self.navigationController?.navigationBar {
            bar.backgroundColor = .themeColor
            bar.tintColor = .white
            var attrs = bar.titleTextAttributes
            if attrs == nil {
                attrs = [NSAttributedStringKey:Any]()
            }
            attrs?[NSAttributedStringKey.foregroundColor] = UIColor.white
            bar.titleTextAttributes = attrs
        }

相关文章

网友评论

      本文标题:swift navigation title 标题颜色代码设置

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