EveryBody i am trying to use custom font such as wingding in my ios application i have followed all those steps for adding custom font like adding the custom font file in my application resource and added the key fontsprovidedbytheapplication in plist and make it as array and below i have mentioned my custom font file name but, still those(wingding) are not working .when i try with other custom fonts they are working properly.
This is the code i have used so offer
- (void)viewDidLoad
{
mine = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 240, 40)];
[mine setFont:[UIFont fontWithName:@"wingding" size:20]];
[mine setText:@"Where i am doing wrong"];
[self.view addSubview:mine];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
where i am missing ant suggestion will be a great help.