HEMenuTableCell.h 609 B

123456789101112131415161718192021
  1. //
  2. // HEMenuTableCell.h
  3. // YHMenu
  4. //
  5. // Created by Boris on 2018/5/27.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface HEMenuTableCell : UITableViewCell
  10. {
  11. CGFloat _width;
  12. CGFloat _height;
  13. }
  14. @property (nonatomic, strong) UIImageView *iconImg;
  15. @property (nonatomic, strong) UILabel *conLabel;
  16. @property (nonatomic, strong) UIView *lineView;
  17. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier width:(CGFloat)width height:(CGFloat)height;
  18. - (void)setContentByTitArray:(NSMutableArray *)titArray ImgArray:(NSMutableArray *)imgArray row:(NSInteger)row;
  19. @end