是否有可能以显示iOS 6的一个模式视图控制器,目前我的应用程序在App Store中?
Answer 1:
是的你可以。 (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:^{
}];
文章来源: Possible to show a “in App Store modal” in iOS 6?