17 lines
373 B
Objective-C
17 lines
373 B
Objective-C
typedef NS_ENUM(NSUInteger, MWMButtonColoring)
|
|
{
|
|
MWMButtonColoringOther,
|
|
MWMButtonColoringBlue,
|
|
MWMButtonColoringBlack,
|
|
MWMButtonColoringWhite,
|
|
MWMButtonColoringWhiteText,
|
|
MWMButtonColoringGray,
|
|
MWMButtonColoringRed
|
|
};
|
|
|
|
@interface MWMButton : UIButton
|
|
|
|
@property (copy, nonatomic) NSString * imageName;
|
|
@property (nonatomic) MWMButtonColoring coloring;
|
|
|
|
@end
|