Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 316 Bytes

File metadata and controls

11 lines (9 loc) · 316 Bytes

Swift

Example

var b = AttributedStringBuilder()
b.append("Hello")
b.append(image: Image(named: "AnImage")!)
b.append("World!", font: Font.boldSystemFont(ofSize: 14), color: .red)
let attributedString: NSAttributedString = b.buildAndReset()