1234567891011121314151617181920212223242526272829 |
- //
- // MTBaseButton.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseButton.h"
- @implementation MTBaseButton
- //UIButton方法实现
- +(MTBaseButton *)buttonWithFrame:(CGRect)rect title:(NSString *)title imageName:(NSString *)imageName titleColor:(UIColor *)color titleFont:(int)size
- {
- MTBaseButton *bt = [MTBaseButton buttonWithType:UIButtonTypeCustom];
- bt.frame = rect;
- [bt setTitle:title forState:UIControlStateNormal];
- [bt setTitleColor:color forState:UIControlStateNormal];
- bt.titleLabel.font = font(size);
- [bt setImage:[UIImage imageNamed:imageName] forState:UIControlStateNormal];
- return bt;
-
- }
- +(MTBaseButton *)buttonWithFrame:(CGRect)rect imageName:(NSString *)imageName{
- MTBaseButton *bt = [MTBaseButton buttonWithType:UIButtonTypeCustom];
- bt.frame = rect;
- [bt setImage:[UIImage imageNamed:imageName] forState:UIControlStateNormal];
- return bt;
- }
- @end
|