12345678910111213141516171819202122232425262728293031 |
- //
- // IndexAllCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/9/17.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "IndexAllModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface IndexAllCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UITableView *subTableV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *countL;
- @property (weak, nonatomic) IBOutlet UIButton *moreBtn;
- @property (weak, nonatomic) IBOutlet UIButton *topBtn;
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contant;
- @property (copy, nonatomic) void(^ClickRowBlock)(CollectModelType type, NSInteger Id);
- + (IndexAllCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (IndexAllCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithModel:(IndexAllModel *)model;
- - (void)setDataWithModel:(IndexAllModel *)model searchText:(NSString *)text;
- @end
- NS_ASSUME_NONNULL_END
|