YOUPAIHRSearchHeaderView.h 530 B

12345678910111213141516171819
  1. //
  2. // YOUPAIHRSearchHeaderView.h
  3. // VQU
  4. //
  5. // Created by xiaohaoran on 2021/11/9.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^TapActionBlock)(NSString *str);
  11. @interface YOUPAIHRSearchHeaderView : UIView
  12. - (instancetype)initWithFrame:(CGRect)frame youpaiphistoryArray:(NSMutableArray *)historyArr;
  13. @property (strong , nonatomic)UICollectionView *youpaipcollectionView;
  14. @property (nonatomic, copy) TapActionBlock youpaiptapAction;
  15. @end
  16. NS_ASSUME_NONNULL_END