我正在关注一个教程(http://www.youtube.com/watch?v=QnSUl5_ccp0) - 但我遇到了一个问题。我有这个代码,但在模拟器中,当我点击按钮时它不会打开新视图。据我所知,它应该加载下一个视图,传递有关应用内购买详细信息的正确信息。
- (IBAction)PurchaseItem:(id)sender {
_purchaseController = [[PurchasedViewController alloc] initWithNibName:nil bundle:nil];
_purchaseController.productID = @"myapp.testiapapp";
[[SKPaymentQueue defaultQueue] addTransactionObserver:_purchaseController];
[self presentViewController:_purchaseController animated:YES completion:NULL];
[_purchaseController getProductID:self];
}
感谢。