I'm trying to use font icons in my IOS application, I can able to display images from miscellaneous
When i use the below code image is displaying
[Label setFont:[UIFont fontWithName:@"fontello" size:50]];
[Label setText:[NSString stringWithUTF8String:"\u2692"]];
But When i am trying to use code from private user area nothing is displaying
[Label setFont:[UIFont fontWithName:@"fontello" size:50]];
[Label setText:[NSString stringWithUTF8String:"\uE756"]];
Can anybody please help me, Thanks in advance!
You have to copy the custom font file to the resources by adding it in the copy files build phase.