On the callout bubble on the iPhone SDK\'s map, can the font be changed for the title and subtitle properties.
I am displeased with the default font shown in the callout
Subclass the MKAnnotationView then put the category below on top of its implementation:
@implementation UIFont (SytemFontOverride)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"
+ (UIFont *)boldSystemFontOfSize:(CGFloat)fontSize {
return [UIFont fontWithName:@"Your-Font-Here" size:fontSize];
}
+ (UIFont *)systemFontOfSize:(CGFloat)fontSize {
return [UIFont fontWithName:@"Your-Font-Here" size:fontSize];
}
#pragma clang diagnostic pop
@end