对于app中的测试目的,购买在ios6中正常工作,但在ios 7中没有。
在icode6的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的特殊设置吗?