问题是同样的事情在另一个应用程序中工作。
我在做什么
#pragma mark SKProductsRequest
-(void)requestProduct{
[SVProgressHUD showWithStatus:@"Connecting store..." maskType:SVProgressHUDMaskTypeBlack];
_productRequest= [[SKProductsRequest alloc] initWithProductIdentifiers: [NSSet setWithObject: Product_100_CREDITS]];
_productRequest.delegate = self;
[_productRequest start];
}
但是对于相同的产品标识符,一个应用程序运行良好,而在另一个应用程序中,我得到“无法连接到iTunes Store”。我在Simulater iOS 7.0中测试它