So I had updated my XCode to 7.3 today evening.
In one of my projects, I get the following error for few labels where I set the font:
\'(name: String
I had the same issue and doing this allows me to compile again:
let descriptor = UIFontDescriptor(name: "OpenSans-Semibold", size: 10.0)
label.font = UIFont(descriptor: descriptor, size: 10.0)
So, use the UIFontDescriptor ...
Also doing this works for me:
if let font = UIFont(name: "OpenSans-Semibold", size: 10) {
label.font = font
}