Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UIFont+MapsMeFonts.h « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd668abf9362a6d3c83571903852d3886b9e129e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import <UIKit/UIKit.h>

@interface UIFont (MapsMeFonts)

+ (UIFont *)regular10;
+ (UIFont *)regular12;
+ (UIFont *)regular14;
+ (UIFont *)regular16;
+ (UIFont *)regular17;
+ (UIFont *)regular18;
+ (UIFont *)regular24;
+ (UIFont *)medium10;
+ (UIFont *)medium14;
+ (UIFont *)medium16;
+ (UIFont *)medium17;
+ (UIFont *)medium18;
+ (UIFont *)medium24;
+ (UIFont *)medium36;
+ (UIFont *)medium40;
+ (UIFont *)medium44;
+ (UIFont *)light10;
+ (UIFont *)light12;
+ (UIFont *)light16;
+ (UIFont *)light17;
+ (UIFont *)bold16;
+ (UIFont *)bold17;
+ (UIFont *)bold48;

+ (UIFont *)fontWithName:(NSString *)fontName;

@end