onlyButton.h 504 B

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