I have my own fontIcon list in the project. I have added it to my plist. When I try the following code it works correctly:
myLabel.text = @"\uE100";
//This is my font icon code
But when I try to get the font icon code from another string it wont work.
NSString* theFont = [NSString stringWithFormat:@"\\u%@",@"E100"];
myLabel.text = thefont;
Is there any special type for icons? what should I do to get the font icon from my API?