MyTableViewCell.h 754 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MyTableViewCell.h
  3. // DSH
  4. //
  5. // Created by 张毅成 on 2018/9/26.
  6. // Copyright © 2018 WZX. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^MyTableViewCellBlock)(void);
  11. @interface MyTableViewCell : UITableViewCell
  12. //@property (weak, nonatomic) IBOutlet UIImageView *imageViewReadBG;
  13. @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
  16. @property (copy, nonatomic) MyTableViewCellBlock blockDidTouchLabelDetail;
  17. - (void)setDataWithModel:(NSDictionary *)dic;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
  19. @end
  20. NS_ASSUME_NONNULL_END