So I am trying to use this font http://fortawesome.github.com/Font-Awesome/. I\'ve added the font as a resource and put it in the plist file. Here\'s how I am using it:
So, I can answer it for Swift & Objective C both. (using Swift 3.0 here)
Just download font-awesome from here: fontawesome.io and add .ttf to your project
Check the image below for more details...
let iconUniChar: UniChar = 0xf113
textLabel.text = String(format: "%C", iconUniChar)
_textLabel.text = [NSString stringWithFormat:@"%C", 0xf113];
And, if you are still facing the trouble here's the