This commit is contained in:
2025-11-07 22:22:41 +08:00
parent b23c9a678b
commit 9a39c29e88
12 changed files with 731 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
//
// KBSearchVC.h
// keyBoard
//
// Created by Mac on 2025/11/7.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 搜索页:顶部搜索视图 + 底部集合列表
/// 说明:
/// - 顶部搜索栏封装为单独 ViewKBSearchBarView
/// - 底部使用 `UICollectionView` 展示:历史搜索(标签流式)/ 推荐皮肤(两列卡片)
/// - 当历史记录为空时,不展示“历史搜索”标题与右侧垃圾桶
@interface KBSearchVC : UIViewController
@end
NS_ASSUME_NONNULL_END