在我的应用程序中,我使用SKStoreProductViewController显示更多应用程序,但Apple商店审核小组拒绝它的原因如下:
"点击更多应用按钮时会显示错误消息."
当我在我的设备上测试时,一切正常.
以下是Apple发给我的截图,可能是什么问题?

示例代码:
__weak typeof(self) weakSelf = self;
SKStoreProductViewController* vc = [[SKStoreProductViewController alloc] init];
vc.delegate = self;
[vc loadProductWithParameters:@{SKStoreProductParameterITunesItemIdentifier : @1000000000} completionBlock:^(BOOL result, NSError * _Nullable error) {
if(result==NO){
//handle failure
return;
}
[weakSelf presentViewController:vc animated:YES completion:nil];
}];
Run Code Online (Sandbox Code Playgroud) 从代码中获取有关iOS设备CPU,GPU和内存的信息的最佳方法是什么?我想知道它有多少核心,cpu有多少GHz等等.谢谢.