34 lines
949 B
Objective-C
34 lines
949 B
Objective-C
//
|
||
// KBPayMainVC.h
|
||
// keyBoard
|
||
//
|
||
// Created by Mac on 2026/2/3.
|
||
//
|
||
|
||
#import "BaseViewController.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface KBPayMainVC : BaseViewController
|
||
|
||
/// 默认选中的会员类型:
|
||
/// - 0:VIP
|
||
/// - 1:SVIP
|
||
/// 默认 0
|
||
@property (nonatomic, assign) NSInteger initialSelectedIndex;
|
||
|
||
/// 通过键盘深链配置初始商品及是否自动发起购买(透传给 VIP 页)
|
||
- (void)configureWithProductId:(nullable NSString *)productId
|
||
autoPurchase:(BOOL)autoPurchase;
|
||
|
||
/// 通过键盘扩展预填充商品列表(免二次请求,透传给 VIP 页)
|
||
/// 注意:selectedIndex 是商品列表下标,不是 VIP/SVIP 的 tab 下标
|
||
- (void)configureWithProductId:(nullable NSString *)productId
|
||
autoPurchase:(BOOL)autoPurchase
|
||
prefillProductsJSON:(nullable NSArray *)productsJSON
|
||
selectedIndex:(NSInteger)selectedIndex;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|