I have a UIWebView and I have a custom font I want to load into an editable html document that I will be displaying through the UIWebView. In my SupportingFiles (resources)
Add your custom font in your project. Then
Get font name
UIFont *font = [UIFont fontWithName:@"Your-Custom-font" size:20];
Then create html string
NSString *htmlHeader=[NSString stringWithFormat:@"HI",cssPath,font.familyName];
Good luck.