HomeUserPrivilegeCell.h 947 B

1234567891011121314151617181920212223242526
  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. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  18. + (HomeUserPrivilegeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser;
  20. @end
  21. NS_ASSUME_NONNULL_END