ButtonView.h 637 B

12345678910111213141516171819202122
  1. //
  2. // ButtonView.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/8/15.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ButtonView : UILabel
  10. @property (nonatomic, retain) UIImageView *imgView;
  11. @property (nonatomic, retain) UILabel *titleLabel;
  12. @property (nonatomic, retain) UILabel *detailLabel;
  13. //type 为1 是带有副标题的(设置了.adjustsFontSizeToFitWidth = YES) 高度建议是60 为2 没带副标题 高度建议是45 副标题随便传
  14. -(id)initWithFrame:(CGRect)frame Image:(NSString *)aImg Title:(NSString *)aTitle Detail:(NSString *)aDetail type:(NSInteger)aType;
  15. @end