I want to implement custom fonts in ios settings.bundle file.if user selects custom font in my application then automatically change the font in my app.so i am trying to create settings.bundle. but i cant get custom font in settings.enter image description here
but i want to display like this.
please help me any body.i am writing code like this.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setValue:@"0.0.1" forKey:@"languageoption"];
[defaults synchronize];
return YES;
}