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