22 lines
436 B
C
22 lines
436 B
C
|
|
//
|
|||
|
|
// 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
|
|||
|
|
|