i think this is really basic question but i try many way to change the font of UILabel i try this code
lbl = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 100)];
[lbl setText:@"Demo Text"];
[lbl setFont:[UIFont fontWithName:@"Comic-Sans-Ms" size:20]];
but it's not work can you please tell me why i am not getting "Comic Sans Ms" font in my label. with this code other font are working but i don't know what is problem with "Comic-Sans-MS"
Thanks..