多个自动续订订阅未显示
Multiple Automatically Renewable Subscriptions not showing
我试图在我的应用程序中集成多个 "Automatically Renewable Subscriptions",但我只获得了一个 SKProducts。 Apple 对多个 "Automatically Renewable Subscriptions" 有任何限制吗?
完成 - 我正在将单个 productIdentifier 传递给 SKProductRequest 集。传递我在 iTunes 中定义的整套产品标识符解决了这个问题。
NSSet *inAppProductsSet = [NSSet setWithObjects:@"iap.prod1",
@"iap.prod2",
@"iap.prod3", nil];
SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:inAppProductsSet];
我试图在我的应用程序中集成多个 "Automatically Renewable Subscriptions",但我只获得了一个 SKProducts。 Apple 对多个 "Automatically Renewable Subscriptions" 有任何限制吗?
完成 - 我正在将单个 productIdentifier 传递给 SKProductRequest 集。传递我在 iTunes 中定义的整套产品标识符解决了这个问题。
NSSet *inAppProductsSet = [NSSet setWithObjects:@"iap.prod1",
@"iap.prod2",
@"iap.prod3", nil];
SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:inAppProductsSet];