mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-21 02:33:50 +00:00
Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com> m Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
19 lines
433 B
Objective-C
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
|