diff --git a/iphone/Maps/UIFont+MapsMeFonts.h b/iphone/Maps/UIFont+MapsMeFonts.h index aa09f0e5df..69d6b6306f 100644 --- a/iphone/Maps/UIFont+MapsMeFonts.h +++ b/iphone/Maps/UIFont+MapsMeFonts.h @@ -24,6 +24,8 @@ + (UIFont *)light12; + (UIFont *)light16; + (UIFont *)light17; ++ (UIFont *)bold12; ++ (UIFont *)bold14; + (UIFont *)bold16; + (UIFont *)bold17; + (UIFont *)bold48; diff --git a/iphone/Maps/UIFont+MapsMeFonts.mm b/iphone/Maps/UIFont+MapsMeFonts.mm index 0fa48ec1a4..7439fabc55 100644 --- a/iphone/Maps/UIFont+MapsMeFonts.mm +++ b/iphone/Maps/UIFont+MapsMeFonts.mm @@ -187,6 +187,18 @@ NSString * fontName(FontWeight weight, CGFloat size) return [UIFont fontWithName:fontName(FontWeightLight, size) size:size]; } ++ (UIFont *)bold12 +{ + CGFloat const size = 12; + return [UIFont fontWithName:fontName(FontWeightBold, size) size:size]; +} + ++ (UIFont *)bold14 +{ + CGFloat const size = 14; + return [UIFont fontWithName:fontName(FontWeightBold, size) size:size]; +} + + (UIFont *)bold16 { CGFloat const size = 16;