I\'m trying to set the font of the UIBarButtonItem
like so:
let barButton = UIBarButtonItem.appearance()
barButton.setTitleTextAttributes([NSFon
Setting Custom font is little bit tricky, since they don't have font
and title
properties. Hope this following answer will help you.
let font = UIFont(name: "", size: )
var leftBarButtonItem = UIBarButtonItem(title: "", style: UIBarButtonStyle.Plain, target: self, action: "buttonClicked:")
leftBarButtonItem.setTitleTextAttributes([NSFontAttributeName:font!], forState: UIControlState.Normal)
self.navigationItem.leftBarButtonItem = leftBarButtonItem