YOUPAIHRSearchView.h 447 B

123456789101112131415161718
  1. //
  2. // YOUPAIHRSearchView.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. typedef void(^TapActionBlock)(NSString *str);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAIHRSearchView : UIView
  12. - (instancetype)initWithFrame:(CGRect)frame youpaiphistoryArray:(NSMutableArray *)historyArr;
  13. @property (nonatomic, copy) TapActionBlock youpaiptapAction;
  14. @end
  15. NS_ASSUME_NONNULL_END