12345678910111213141516171819 |
- //
- // YOUPAIHRSearchHeaderView.h
- // VQU
- //
- // Created by xiaohaoran on 2021/11/9.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^TapActionBlock)(NSString *str);
- @interface YOUPAIHRSearchHeaderView : UIView
- - (instancetype)initWithFrame:(CGRect)frame youpaiphistoryArray:(NSMutableArray *)historyArr;
- @property (strong , nonatomic)UICollectionView *youpaipcollectionView;
- @property (nonatomic, copy) TapActionBlock youpaiptapAction;
- @end
- NS_ASSUME_NONNULL_END
|