// // KBVipPay.h // keyBoard // // Created by Mac on 2025/11/14. // #import NS_ASSUME_NONNULL_BEGIN /// VIP 订阅页(整体使用 UICollectionView,上下滚动) @interface KBVipPay : BaseViewController /// 通过键盘深链配置初始商品及是否自动发起购买 - (void)configureWithProductId:(nullable NSString *)productId autoPurchase:(BOOL)autoPurchase; /// 通过键盘扩展预填充商品列表(免二次请求) - (void)configureWithProductId:(nullable NSString *)productId autoPurchase:(BOOL)autoPurchase prefillProductsJSON:(nullable NSArray *)productsJSON selectedIndex:(NSInteger)selectedIndex; @end NS_ASSUME_NONNULL_END