App Store でアプリを表示する iOS 6 のモーダル ビュー コントローラーを表示することは可能ですか?
質問する
2713 次
1 に答える
25
はい、できます。(iOS6以降)
SKStoreProductViewControllerを見てください
NSDictionary *appParameters = [NSDictionary dictionaryWithObject:@"533886215"
forKey:SKStoreProductParameterITunesItemIdentifier];
SKStoreProductViewController *productViewController = [[SKStoreProductViewController alloc] init];
[productViewController setDelegate:self];
[productViewController loadProductWithParameters:appParameters
completionBlock:^(BOOL result, NSError *error)
{
}];
[self presentViewController:productViewController
animated:YES
completion:^{
}];
于 2012-10-18T20:31:02.800 に答える