我可以在导航栏中使用2种颜色Tittle吗?

时间:2016-05-18 02:54:43

标签: swift colors nsattributedstring navigationbar titlebar

我想在导航栏标题中设置2种颜色。 如果我不能这样做,我怎样才能完美地将图像作为导航栏的中心??

我试过了:

FORMAT

它看起来很小而且没有居中。

谢谢你们!

1 个答案:

答案 0 :(得分:0)

感谢用户Larme,您的回答对我帮助很大。多数民众赞成我是如何做到的:

let A = NSMutableAttributedString(string: "Label Test", attributes: [NSFontAttributeName: UIFont(name: "Georgia", size: 18)!])

A.addAttribute(NSForegroundColorAttributeName, value: UIColor.blueColor(), range: NSRange(location: 6, length: 5))

let LabelTexto: UILabel = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 30))

LabelText.attributedText = A

self.navigationItem.titleView = LabelText