Files
keyboard/keyBoard/Class/Shop/V/KBShopHeadView.h
2025-11-13 16:23:46 +08:00

27 lines
565 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.

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