我在我的项目中使用应用内购买。目前正在从沙盒进行购买。但我发现了一个关于产品标识符的问题。现在我正在对产品标识符进行硬编码,如下所示。我手动将产品标识符存储在 plist (ProductId.plist) 中(请引用图片)
#import "RageIAPHelper.h"
@implementation RageIAPHelper
+ (RageIAPHelper *)sharedInstance {
static dispatch_once_t once;
static RageIAPHelper * sharedInstance;
dispatch_once(&once, ^{
NSString* plistPath = [[NSBundle mainBundle] pathForResource"roductId" ofType"plist"];
NSArray * contentArray = [NSArray arrayWithContentsOfFile:plistPath];
NSLog(@"content aray:%@",contentArray);
NSSet * productIdentifiers= [NSSet setWithArray:contentArray];
sharedInstance = [[self alloc] initWithProductIdentifiers:productIdentifiers];
});
return sharedInstance;
}
@end
//应用购买教程中来自 RAY WENDERLICH 的代码
问题现在无法从 iTunes Store 动态获取产品标识符。那么如何从 iTunes 商店获取产品 ID 而不是在 plist 中进行硬编码???
请帮忙
Best Answer-推荐答案 strong>
您可以执行以下操作以获取产品数据。
NSSet *productIdentifiers = [NSSet setWithObject"com.****.******"];
self.productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];
self.productsRequest.delegate = self;
[self.productsRequest start];
此代表将接到电话,将获得您所需的产品信息
- (void)productsRequestSKProductsRequest *)request didReceiveResponseSKProductsResponse *)response
关于ios - 无法在应用购买中从 iTunes Connect 获取产品标识符?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/17872384/
|