22 lines
385 B
C
22 lines
385 B
C
|
|
//
|
||
|
|
// SASearchNavView.h
|
||
|
|
// SamaVoice
|
||
|
|
//
|
||
|
|
// Created by 申中迪 on 2022/5/10.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SASearchNavView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UITextField *searchTF;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *searchBtn;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^onSearchBlock)(NSString *str);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|