开发环境:
AppStoreInfo.h
@interface AppStoreInfo : NSObject{ } + (void)openGradeInfo:(NSDictionary *)dict; //- (void)productViewControllerDidFinish:(SKStoreProductViewController *)viewController; @endAppStoreInfo.m
#import "AppStoreInfo.h" #import <StoreKit/StoreKit.h> @implementation AppStoreInfo + (void)openInfo:(NSDictionary *)dict{ NSString *url = [dict valueForKey:@"url"]; NSLog(@"%@", url); [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url] options:@{} completionHandler:NULL]; }