12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // WorkFLowCollectionSelectView.h
- // collectioview
- //
- // Created by Wenzhe Fan on 2019/11/7.
- // Copyright © 2019年 Wenzhe Fan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface WorkFlowCollectViewCell: UICollectionViewCell
- @property (strong,nonatomic) UILabel *namelabel;
- @property (assign,nonatomic) BOOL isSelected;
- - (void)selectNamel:(BOOL)isSelect;
- @end
- @protocol WorkFLowCollectionSelectViewDelegate <NSObject>
- - (void)selecetWorkFLow:(NSIndexPath *)path withModel:(NSArray<WorkFilterModel *> *)modle;
- @end
- @interface WorkFLowCollectionSelectView : UIView
- @property (strong,nonatomic) UICollectionView * collectionView;
- @property (strong,nonatomic) NSMutableArray <WorkFilterModel *>*approvalNameArray;
- @property (nonatomic, weak) id<WorkFLowCollectionSelectViewDelegate> delegate;
- - (void)collectionViewReloadData;
- @end
- NS_ASSUME_NONNULL_END
|