1234567891011121314151617181920212223242526272829 |
- //
- // CommonListCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/28.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CommonListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CommonListCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UIImageView *iconV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *desL;
- + (CGFloat)configCell0Height;
- + (CommonListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (CommonListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setCell1Data:(CommonListModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|