在应用程序购买问题ios 7

时间:2013-12-04 11:01:40

标签: ios7 in-app-purchase unity3d prime31

对于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的特殊设置吗?

0 个答案:

没有答案