Files
comaps/iphone/Maps/Classes/Components/MWMButton.h
Yannik Bloscheck bf75728e7d WIP: Modes
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
2026-01-20 22:06:51 +01:00

19 lines
433 B
Objective-C

typedef NS_ENUM(NSUInteger, MWMButtonColoring)
{
MWMButtonColoringOther,
MWMButtonColoringBlue,
MWMButtonColoringBlack,
MWMButtonColoringWhite,
MWMButtonColoringWhiteText,
MWMButtonColoringGray,
MWMButtonColoringRed
};
@interface MWMButton : UIButton
@property (copy, nonatomic) NSString * imageName;
@property (copy, nonatomic) NSString * backgroundImageName;
@property (nonatomic) MWMButtonColoring coloring;
@end