0

I am trying to integrate multiple "Automatically Renewable Subscriptions" in my app, but i am getting only one of the SKProducts. Is there any limitation from Apple over multiple "Automatically Renewable Subscriptions"?

4

1 回答 1

0

搞定 - 我将一个 productIdentifier 传递给 SKProductRequest 集。通过我在 iTunes 中定义的整套产品标识符解决了这个问题。

NSSet *inAppProductsSet = [NSSet setWithObjects:@"iap.prod1",
                           @"iap.prod2",
                           @"iap.prod3", nil];
SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:inAppProductsSet];
于 2016-02-01T10:03:36.027 回答