Skip to content

Instantly share code, notes, and snippets.

@gwennguihal
Created July 18, 2017 20:55
Show Gist options
  • Save gwennguihal/79b7ebb007d107c27a020cf00096950b to your computer and use it in GitHub Desktop.
Save gwennguihal/79b7ebb007d107c27a020cf00096950b to your computer and use it in GitHub Desktop.
import Collor
struct TitleAdapter: CollectionAdapter {
var title : NSAttributedString
let image: UIImage = UIImage(named: "picto_warning_orange")!
init() {
let paragrapheStyle = NSMutableParagraphStyle()
paragrapheStyle.alignment = .left
title = NSAttributedString(string: "Title", attributes: [
NSFontAttributeName: UIFont.italicSystemFont(ofSize: 10),
NSParagraphStyleAttributeName : paragrapheStyle,
NSForegroundColorAttributeName: UIColor.red
])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment