I've added custom fonts to my xcode project and they show up just fine when I run the app in the simulator but when I run it on my iPhone they don't show up. This is the code in my AppDelegate.m file
[[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:23.0/255.0 green:97.0/255.0 blue:115.0/255.0 alpha:1.0], UITextAttributeTextColor,
[UIFont fontWithName:@"Lily Script One" size:23.0], UITextAttributeFont, nil]];