CustomButton.h 473 B

1234567891011121314151617
  1. //
  2. // CustomButton.h
  3. // IBOSS
  4. //
  5. // Created by ssl on 2017/7/13.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomButton : UIButton
  10. - (instancetype)initWithFrame:(CGRect)frame andImage:(UIImage *) img addText:(NSString *) string addImageWidth:(CGFloat) width addImageHeight:(CGFloat) height;
  11. @property (nonatomic,strong) UIImage *img;
  12. @property (nonatomic,strong) NSString *string;
  13. @end