一个用于构建富文本字符串的简单库,为更文明的时代而设计。
Veneer旨在使创建富文本字符串更加易于阅读和编写。从SnapKit汲取灵感,Veneer使用块来构建属性并生产NSAttributedString。
pod "Veneer"
let attrString = NSAttributedString(string: "Hello World") { make in
make.font(UIFont.boldSystemFontOfSize(32.0))
make.backgroundColor(.red
make.color(.white)
}
someLabel.attributedText = attrString
Wess Cope