22 lines
394 B
C
22 lines
394 B
C
|
|
//
|
||
|
|
// KBSearchResultVC.h
|
||
|
|
// keyBoard
|
||
|
|
//
|
||
|
|
// 搜索结果页:顶部搜索框 + 下方网格列表
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
/// 简单的搜索结果页,供外部 push 使用
|
||
|
|
@interface KBSearchResultVC : UIViewController
|
||
|
|
|
||
|
|
/// 可选:进入页面时默认关键字
|
||
|
|
@property (nonatomic, copy, nullable) NSString *defaultKeyword;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|
||
|
|
|