WorkFLowCollectionSelectView.h 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // WorkFLowCollectionSelectView.h
  3. // collectioview
  4. //
  5. // Created by Wenzhe Fan on 2019/11/7.
  6. // Copyright © 2019年 Wenzhe Fan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WorkFlowCollectViewCell: UICollectionViewCell
  11. @property (strong,nonatomic) UILabel *namelabel;
  12. @property (assign,nonatomic) BOOL isSelected;
  13. - (void)selectNamel:(BOOL)isSelect;
  14. @end
  15. @protocol WorkFLowCollectionSelectViewDelegate <NSObject>
  16. - (void)selecetWorkFLow:(NSIndexPath *)path withModel:(NSArray<WorkFilterModel *> *)modle;
  17. @end
  18. @interface WorkFLowCollectionSelectView : UIView
  19. @property (strong,nonatomic) UICollectionView * collectionView;
  20. @property (strong,nonatomic) NSMutableArray <WorkFilterModel *>*approvalNameArray;
  21. @property (nonatomic, weak) id<WorkFLowCollectionSelectViewDelegate> delegate;
  22. - (void)collectionViewReloadData;
  23. @end
  24. NS_ASSUME_NONNULL_END