2025-11-14 18:43:08 +08:00
|
|
|
|
//
|
|
|
|
|
|
// KBVipPay.h
|
|
|
|
|
|
// keyBoard
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by Mac on 2025/11/14.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
2025-11-14 19:48:15 +08:00
|
|
|
|
/// VIP 订阅页(整体使用 UICollectionView,上下滚动)
|
2025-11-14 23:09:04 +08:00
|
|
|
|
@interface KBVipPay : BaseViewController
|
2025-12-17 16:22:41 +08:00
|
|
|
|
|
|
|
|
|
|
/// 通过键盘深链配置初始商品及是否自动发起购买
|
|
|
|
|
|
- (void)configureWithProductId:(nullable NSString *)productId
|
|
|
|
|
|
autoPurchase:(BOOL)autoPurchase;
|
2025-12-17 19:45:39 +08:00
|
|
|
|
|
|
|
|
|
|
/// 通过键盘扩展预填充商品列表(免二次请求)
|
|
|
|
|
|
- (void)configureWithProductId:(nullable NSString *)productId
|
|
|
|
|
|
autoPurchase:(BOOL)autoPurchase
|
|
|
|
|
|
prefillProductsJSON:(nullable NSArray *)productsJSON
|
|
|
|
|
|
selectedIndex:(NSInteger)selectedIndex;
|
2025-11-14 18:43:08 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|