出于测试目的,应用程序购买在 ios6 中运行良好,但在 ios 7 中运行良好。
在 ios6 的 xcode 中运行时,它显示已收到产品列表,但对于 ios7,它显示无效的产品 ID。
这是我正在使用的代码:
void Start()
{
var productIdentifiers = new string[] {"product.100"};
StoreKitBinding.requestProductData( productIdentifiers );
}
void ButtonOne()
{
bool canMakePayments = StoreKitBinding.canMakePayments();
StoreKitBinding.purchaseProduct( "product.100" , 1 );
}
我缺少ios7的任何特殊设置吗?