diff --git a/iphone/Maps/UIFont+MapsMeFonts.h b/iphone/Maps/UIFont+MapsMeFonts.h index cd668abf93..909f9f96f4 100644 --- a/iphone/Maps/UIFont+MapsMeFonts.h +++ b/iphone/Maps/UIFont+MapsMeFonts.h @@ -9,6 +9,8 @@ + (UIFont *)regular17; + (UIFont *)regular18; + (UIFont *)regular24; ++ (UIFont *)regular32; ++ (UIFont *)regular52; + (UIFont *)medium10; + (UIFont *)medium14; + (UIFont *)medium16; diff --git a/iphone/Maps/UIFont+MapsMeFonts.mm b/iphone/Maps/UIFont+MapsMeFonts.mm index aa50517e8f..b3a6f8321c 100644 --- a/iphone/Maps/UIFont+MapsMeFonts.mm +++ b/iphone/Maps/UIFont+MapsMeFonts.mm @@ -42,6 +42,16 @@ static NSString * const kBoldFont = @"HelveticaNeue-Bold"; return [UIFont fontWithName:kRegularFont size:24]; } ++ (UIFont *)regular32 +{ + return [UIFont fontWithName:kRegularFont size:32]; +} + ++ (UIFont *)regular52 +{ + return [UIFont fontWithName:kRegularFont size:52]; +} + + (UIFont *)medium10 { return [UIFont fontWithName:kMediumFont size:10];