21 lines
321 B
C
21 lines
321 B
C
|
|
//
|
||
|
|
// SASearchHistoryView.h
|
||
|
|
// SamaVoice
|
||
|
|
//
|
||
|
|
// Created by 申中迪 on 2022/5/10.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SASearchHistoryView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^onClickHistoryBlock)(NSString *str);
|
||
|
|
|
||
|
|
-(void)onInsertKeyword:(NSString *)str;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|