12345678910111213141516171819202122232425262728 |
- //
- // MyTableViewCell.h
- // DSH
- //
- // Created by 张毅成 on 2018/9/26.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^MyTableViewCellBlock)(void);
- @interface MyTableViewCell : UITableViewCell
- //@property (weak, nonatomic) IBOutlet UIImageView *imageViewReadBG;
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
- @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
- @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
- @property (copy, nonatomic) MyTableViewCellBlock blockDidTouchLabelDetail;
- - (void)setDataWithModel:(NSDictionary *)dic;
- + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
- @end
- NS_ASSUME_NONNULL_END
|