[ios] Added regular font sizes.

This commit is contained in:
Ilya Grechuhin 2015-10-19 14:42:30 +03:00
parent 9ee87561bc
commit 41989ef428
2 changed files with 12 additions and 0 deletions

View file

@ -9,6 +9,8 @@
+ (UIFont *)regular17;
+ (UIFont *)regular18;
+ (UIFont *)regular24;
+ (UIFont *)regular32;
+ (UIFont *)regular52;
+ (UIFont *)medium10;
+ (UIFont *)medium14;
+ (UIFont *)medium16;

View file

@ -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];