Files
keyboard/keyBoard/Class/Home/V/KBTopThreeView.h
2025-11-06 14:59:00 +08:00

22 lines
436 B
Objective-C
Raw Permalink 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.

//
// KBTopThreeView.h
// keyBoard
//
// 顶部前三名展示视图:内部横向三栏,样式参考设计图。
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 用于 HomeHot 顶部展示前三名的视图
@interface KBTopThreeView : UIView
/// 配置三项内容(数组元素可传 @{ @"title":NSString, @"rank":@(1/2/3) }
- (void)configWithItems:(NSArray<NSDictionary *> *)items;
@end
NS_ASSUME_NONNULL_END