1234567891011121314151617 |
- //
- // MTBaseButton.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MTBaseButton : UIButton
- +(MTBaseButton *)buttonWithFrame:(CGRect)rect title:(NSString *)title imageName:(NSString *)imageName titleColor:(UIColor *)color titleFont:(int)size;
- +(MTBaseButton *)buttonWithFrame:(CGRect)rect imageName:(NSString *)imageName;
- @end
- NS_ASSUME_NONNULL_END
|