bottomButton.h 451 B

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