1234567891011121314151617181920212223242526 |
- //
- // YOUPAIZYLabelView.h
- // VQU
- //
- // Created by Elaine on 2020/12/16.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIZYLabelModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYLabelViewDelegate <NSObject>
- -(void)youpaifclickLabel:(YOUPAIZYLabelModel *)labelModel;
- @end
- @interface YOUPAIZYLabelView : UIView
- - (instancetype)initWithFrame:(CGRect)frame labelArray:(NSArray*)labelArray andType:(NSString *)type;//搜索页 search 个人详情userinfo
- @property (strong , nonatomic)UICollectionView *youpaipcollectionView;
- @property(nonatomic,weak)id<ZYLabelViewDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|