YOUPAIZYSelectLabelView.h 632 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAIZYSelectLabelView.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2020/12/17.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIZYLabelModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ZYSelectLabelViewDelegate <NSObject>
  12. -(void)youpaifselectLabel:(NSArray <YOUPAIZYLabelModel*>*)labelModelArr;
  13. @end
  14. @interface YOUPAIZYSelectLabelView : UIView
  15. - (instancetype)initWithFrame:(CGRect)frame labelArray:(NSArray*)labelArray;
  16. @property (strong , nonatomic)UICollectionView *youpaipcollectionView;
  17. @property(nonatomic,weak)id<ZYSelectLabelViewDelegate>youpaipdelegate;
  18. @end
  19. NS_ASSUME_NONNULL_END