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

UIImageView+Coloring.h « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c43d657c376d73c2afab67932edf729c404c4292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
typedef NS_ENUM(NSUInteger, MWMImageColoring)
{
  MWMImageColoringOther,
  MWMImageColoringBlue,
  MWMImageColoringBlack,
  MWMImageColoringGray,
  MWMImageColoringSeparator
};

@interface UIImageView (Coloring)

@property (nonatomic) MWMImageColoring mwm_coloring;
@property (copy, nonatomic) NSString * mwm_name;

- (void)changeColoringToOpposite;

@end