HomeProblemTopCell.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // HomeProblemTopCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/19.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeProblemTopCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  12. @property (weak, nonatomic) IBOutlet UILabel *topTitleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *topContentL;
  14. @property (weak, nonatomic) IBOutlet UIButton *TopBtn;
  15. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  16. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  17. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  18. @property (weak, nonatomic) IBOutlet UILabel *keL;
  19. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  20. @property (weak, nonatomic) IBOutlet UIImageView *yanV;
  21. @property (weak, nonatomic) IBOutlet UILabel *numL;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  23. + (HomeProblemTopCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. + (HomeProblemTopCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  25. - (void)setData;
  26. @end
  27. NS_ASSUME_NONNULL_END