在我们的应用程序中,我有一个购买按钮&一个恢复按钮,但我想这样做,以便我可以只使用一个,而不是2个单独的按钮,然后提示该怎么做。
任何人都可以协助编辑下面的代码,以便当用户点击按钮时,UIAlert会弹出一个按钮来说升级,一个用来说恢复,另一个取消。
以下是用于购买/恢复的当前代码;
-(IBAction) actionRemoveAds
{
[[MKStoreManager sharedManager] buyFeatureA];
}
-(IBAction) actionRestore
{
[MKStoreManager sharedManager];
[[SKPaymentQueue defaultQueue] restoreCompletedTransactions];
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (alertView.tag==111) {
if (buttonIndex==0) {
[[MKStoreManager sharedManager]buyFeatureA];
}
}
}
非常感谢, 克里斯