I\'m trying to set the font of the UIBarButtonItem like so:
UIBarButtonItem
let barButton = UIBarButtonItem.appearance() barButton.setTitleTextAttributes([NSFon
if let font : UIFont = UIFont(name: "Roboto-Regular", size: 15) { cancelBarButton.setTitleTextAttributes([NSFontAttributeName: font], forState: UIControlState.Normal) doneBarButton.setTitleTextAttributes([NSFontAttributeName: font], forState: UIControlState.Normal) }