Files
keyboard/keyBoard/Class/Search/VC/KBSearchVC.h
2025-11-07 22:22:41 +08:00

22 lines
521 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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