在iOS 应用中跳转到app store

//    1.进入appstore中指定的应用

    NSString *str = [NSString stringWithFormat:

                     @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa /wa/viewContentsUserReviews?type=Purple+Software&id=%d",

                     myAppID ];

    

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

    

//    其中myAppIDitunesconnect中的应用程序id

    

    

    

//    2.进入首页

    

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/gb/app/yi-dong-cai-bian/id391945719?mt=8"]];

你可能感兴趣的:(ios,APP,store,store,跳转,进入appstore,应用中跳转到app)