Can any one tell me that how can i get the map annotation title's font/style in a UIlabel
I want the exact style/font in the label ..
UILabel *name = [[UILabel alloc]init];
name.text = @"Hello Annotation";
name.textColor = [UIColor whiteColor];
[name setFont: [UIFont fontWithName:@"Helvetica" size:20.0]];
what else should i need to include to get the exact style as of the annotation title ?

