I am trying to change the font of a UIButton using Swift...
myButton.font = UIFont(name: \"...\", 10)
However .font is depreca
.font
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)