[ios] Added missing regular20 font.

This commit is contained in:
VladiMihaylenko 2019-03-12 11:45:51 +03:00 committed by Aleksandr Zatsepin
parent ebc3909b44
commit 22fdecbe56
2 changed files with 2 additions and 0 deletions

View file

@ -10,6 +10,7 @@
+ (UIFont *)regular16;
+ (UIFont *)regular17;
+ (UIFont *)regular18;
+ (UIFont *)regular20;
+ (UIFont *)regular24;
+ (UIFont *)regular32;
+ (UIFont *)regular52;

View file

@ -15,6 +15,7 @@ NSString * const kLightFontName = @"HelveticaNeue-Light";
+ (UIFont *)regular16 { return [UIFont systemFontOfSize:16]; }
+ (UIFont *)regular17 { return [UIFont systemFontOfSize:17]; }
+ (UIFont *)regular18 { return [UIFont systemFontOfSize:18]; }
+ (UIFont *)regular20 { return [UIFont systemFontOfSize:20]; }
+ (UIFont *)regular24 { return [UIFont systemFontOfSize:24]; }
+ (UIFont *)regular32 { return [UIFont systemFontOfSize:32]; }
+ (UIFont *)regular52 { return [UIFont systemFontOfSize:52]; }