ios-fontawesome on UIBarButtonItem

font-awesome, ios

Solution

In case anyone else ever wonders:

[self.barButton setTitleTextAttributes:@{
                  NSFontAttributeName: [UIFont fontWithName:@"FontAwesome" size:24.0],
                  NSForegroundColorAttributeName: self.view.tintColor
                                         } forState:UIControlStateNormal]; 
[self.barButton setTitle:[NSString fontAwesomeIconStringForIconIdentifier:@"fa-camera"]];

Problem

I'm trying to use iOS FontAwesome to set an icon on a bar button, like this: ``` [self.barButton setTitle:[NSString fontAwesomeIconStringForEnum:FACamera]]; ``` and also with this: ``` [self.barButton setTitle:[NSString fontAwesomeIconStringForIconIdentifier:@"fa-camera"]]; ``` No matter what identifier I use the result is the same: What could be wrong?

Original source