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
Elsewhere on SO, someone suggest that where you have this:
aTitleView.font = UIFont(name: "Roboto-Regular", size: 15)
...you should try writing this:
aTitleView.font = UIFont.init(name: "Roboto-Regular", size: 15)
I can take no credit for this (because I can't reproduce the bug) so I'm just guessing! But it would be very interesting to know if it actually works.