HomeUserPrivilegeCell.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // HomeUserPrivilegeCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/16.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeUserPrivilegeCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  12. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  13. @property (weak, nonatomic) IBOutlet UIButton *lookBtn;
  14. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
  16. @property (weak, nonatomic) IBOutlet UIView *ShowView;
  17. @property (weak, nonatomic) IBOutlet UILabel *showTitleL;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  19. @property (strong, nonatomic) HomeSubModel * model;
  20. + (HomeUserPrivilegeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  21. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser model:(HomeSubModel *)model;
  22. @end
  23. NS_ASSUME_NONNULL_END