123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // HomeProblemTopCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/19.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BookProblemModel.h"
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeProblemTopCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
- @property (weak, nonatomic) IBOutlet UILabel *topTitleL;
- @property (weak, nonatomic) IBOutlet UILabel *topContentL;
- @property (weak, nonatomic) IBOutlet UIButton *TopBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *TitleL;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *keL;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- @property (weak, nonatomic) IBOutlet UIImageView *yanV;
- @property (weak, nonatomic) IBOutlet UILabel *numL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
- + (HomeProblemTopCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (HomeProblemTopCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataModel:(BookProblemModel *)model;
- - (void)setDataListModel:(HomeSubItemModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|