HomeUserPrivilegeCell.h 882 B

12345678910111213141516171819202122232425
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeUserPrivilegeCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UILabel *TitleL;
  12. @property (weak, nonatomic) IBOutlet UIButton *lookBtn;
  13. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
  15. @property (weak, nonatomic) IBOutlet UIView *ShowView;
  16. @property (weak, nonatomic) IBOutlet UILabel *showTitleL;
  17. + (HomeUserPrivilegeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  18. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser;
  19. @end
  20. NS_ASSUME_NONNULL_END