CustomButton.h 471 B

1234567891011121314151617
  1. //
  2. // CustomButton.h
  3. // 自定义Button
  4. //
  5. // Created by sunbk on 16/7/6.
  6. // Copyright © 2016年 xingyuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomButton : UIControl
  10. @property (nonatomic, strong) UIImageView* customImgView;
  11. @property (nonatomic, strong) UILabel* leftLabel;
  12. @property (nonatomic, strong) UIButton* rightButton;
  13. - (instancetype)initWithFrame:(CGRect)frame bothLabelHeight:(CGFloat)height imgName:(NSString *)imgName;
  14. @end