2025-11-09 13:56:13 +08:00
|
|
|
|
//
|
|
|
|
|
|
// KBShopHeadView.h
|
|
|
|
|
|
// keyBoard
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by Mac on 2025/11/9.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
2025-11-13 16:23:46 +08:00
|
|
|
|
/// 商城顶部头图
|
|
|
|
|
|
/// 还原设计稿(见需求截图):左侧「Points\nMall」标题 + 右侧大金币装饰
|
|
|
|
|
|
/// 下方卡片显示积分与「Recharge」按钮。
|
|
|
|
|
|
/// Masonry 约束 + 懒加载,中文注释。
|
2025-11-09 13:56:13 +08:00
|
|
|
|
@interface KBShopHeadView : UIView
|
|
|
|
|
|
|
2025-11-13 16:23:46 +08:00
|
|
|
|
/// 点击充值回调
|
|
|
|
|
|
@property (nonatomic, copy) void (^onRechargeTapped)(void);
|
|
|
|
|
|
|
|
|
|
|
|
/// 更新积分展示
|
|
|
|
|
|
- (void)updatePoints:(NSString *)points;
|
|
|
|
|
|
|
2025-11-09 13:56:13 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|