I want a UIBarButton Item like this in my NavigationBar and
Normal UIButton like this
I already tried using these links Question 1 Question 2 Question 3 but didn't got the output.
My need is to append that FontAwesome icon with the button title text.
Can anyone help in this?
My code is:
NSString *icon = [NSString fontAwesomeIconStringForIconIdentifier:@"fa-folder-open"];
NSString *locationString = [NSString stringWithFormat:@"%@ %@", icon, @"Change"];
NSMutableAttributedString *astring = [[NSMutableAttributedString alloc] initWithString:locationString];
[astring addAttribute:NSFontAttributeName
value:[UIFont iconicFontOfSize:20]
range:NSMakeRange(0,1)]; // The first character
changeFolderButton.titleLabel.attributedText = astring;