gpt4 book ai didi

ios - SKProductsRequest 返回空结果

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:22:41 26 4
gpt4 key购买 nike

我查看了其他一些答案,它们似乎对我的情况没有帮助。我有一个新的应用程序几乎准备好首次发布,我正在处理应用程序内购买部分。我在以前的应用程序中使用过 IAP,所以我认为转移应该很简单。然而,问题是每当我运行 SKProductsRequest 时,它都会返回一个空结果集。

我正在使用以下内容来发出请求

productIdentifierList = [[NSMutableArray alloc] init];
[productIdentifierList addObject:[NSString stringWithFormat:@"xxxxxxxxxx"]];

SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:[NSSet setWithArray:productIdentifierList]];

响应转到

-(void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response {
NSLog(@"Recieved Product Response %@",response.products);
[productDetailsList addObjectsFromArray: response.products];
[productDisplayTableView reloadData];
}

我似乎没有得到任何返回结果。我已经检查了 ID,它们似乎没问题;我也通过 Xcode 从我的 iPhone 设备运行,但仍然没有成功。调试器中的响应也不会给出太多信息。

有人可以针对此问题提出一些修复建议吗?

最佳答案

事实证明,在新版本的 IOS 中,您不再需要输入应用程序的完整 ID,然后再输入 iap id。而只是输入 iap id。

[productIdentifierList addObject:[NSString stringWithFormat:@"iap_id"]];

关于ios - SKProductsRequest 返回空结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15204511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com