YOUPAIZYLabelView.h 661 B

1234567891011121314151617181920212223242526
  1. //
  2. // YOUPAIZYLabelView.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2020/12/16.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIZYLabelModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ZYLabelViewDelegate <NSObject>
  12. -(void)youpaifclickLabel:(YOUPAIZYLabelModel *)labelModel;
  13. @end
  14. @interface YOUPAIZYLabelView : UIView
  15. - (instancetype)initWithFrame:(CGRect)frame labelArray:(NSArray*)labelArray andType:(NSString *)type;//搜索页 search 个人详情userinfo
  16. @property (strong , nonatomic)UICollectionView *youpaipcollectionView;
  17. @property(nonatomic,weak)id<ZYLabelViewDelegate>youpaipdelegate;
  18. @end
  19. NS_ASSUME_NONNULL_END