This commit is contained in:
2025-11-08 20:04:50 +08:00
parent faeb930fe3
commit 3b0beb52da
8 changed files with 620 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
//
// 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