Here is my code:
let font = UIFont(name: "AvenirNext-Regular", size: 16.0)
let attributes: NSDictionary? = [ NSFontAttributeName : font! ]
self.segmentedControl.setTitleTextAttributes(attributes, forState:.Normal)
I have an error "Could not find member 'Normal' in the last line. What's wrong?
You need to cast your
attributes
to[NSObject : AnyObject]
and your code will be :This is default syntax from Apple Docs:
Or you can cast
attributes
to[NSObject : AnyObject]?
when you create it and code code will be: