1234567891011121314151617181920212223242526 |
- //
- // MyTDTopicSelectExtentCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/20.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDTopicSelectExtentCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *NameL;
- @property (weak, nonatomic) IBOutlet UILabel *subNameL;
- @property (weak, nonatomic) IBOutlet UIImageView *IsTopImgV;
- @property (weak, nonatomic) IBOutlet UIButton *comeBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *fileImgV;
- @property (weak, nonatomic) IBOutlet UIButton *selectBtn;
- + (MyTDTopicSelectExtentCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (MyTDTopicSelectExtentCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|