MTBaseButton.h 457 B

1234567891011121314151617
  1. //
  2. // MTBaseButton.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MTBaseButton : UIButton
  10. +(MTBaseButton *)buttonWithFrame:(CGRect)rect title:(NSString *)title imageName:(NSString *)imageName titleColor:(UIColor *)color titleFont:(int)size;
  11. +(MTBaseButton *)buttonWithFrame:(CGRect)rect imageName:(NSString *)imageName;
  12. @end
  13. NS_ASSUME_NONNULL_END