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: 6adf1630a3f788780c8d50b170937e955924082f (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,
  MWMImageColoringWhite,
  MWMImageColoringGray,
  MWMImageColoringSeparator
};

@interface UIImageView (Coloring)

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

- (void)changeColoringToOpposite;

@end