123456789101112131415161718192021222324252627282930 |
- //
- // HomeUserPrivilegeCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/16.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubModel.h"
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeUserPrivilegeCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property (weak, nonatomic) IBOutlet UILabel *TitleL;
- @property (weak, nonatomic) IBOutlet UIButton *lookBtn;
- @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
- @property (weak, nonatomic) IBOutlet UIView *ShowView;
- @property (weak, nonatomic) IBOutlet UILabel *showTitleL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
- @property (strong, nonatomic) HomeSubModel * model;
- @property (nonatomic, copy) void(^ClickItemBlock)(HomeSubItemModel *pmodel);
- + (HomeUserPrivilegeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser model:(HomeSubModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|