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