我是靠谱客的博主 善良方盒,最近开发中收集的这篇文章主要介绍AppStore url跳转链接(转),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、如果是在应用内部跳转到Appstore只需执行如下代码

1、跳转到应用详情

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@”itms-apps://itunes.apple.com/app/id1061880281”]];

其中 @”itms-apps://itunes.apple.com/app/id1061880281”为拼接地址,1061880281为应用在Appstore注册上线时产生的唯一ID

2、跳转到评论

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@”itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=1232138855&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8”]];

2、如果是扫描二维码跳转到appstore

https://itunes.apple.com/app/id1061880281 ,用这个地址生成二维码即可

但是有可能会碰到多国语言问题,你会发现在其他语言下用安卓设备扫描二维码会进入itunes,而默认展示出来的界面确是英文环境,这是你只需要在 https://itunes.apple.com/app/id1061880281 修改为如下:

例如中文:https://itunes.apple.com/cn/app/id1061880281

例如日文:https://itunes.apple.com/jp/app/id1061880281

等等…也就是在com后面加上国家的简写国际字符即可

3、检测新版本升级跳转到AppStore升级

注:这个功能只有写在应用每次启动时检测,如果在设置界面留有检测更新入口,上架时审核会被苹果拒绝,苹果是不允许在AppStore之外的方式升级的

-(void)checkVersion

{

NSString *path = [[NSString alloc] initWithFormat:@"http://itunes.apple.com/lookup?id=%@",@"1061880281"];

NSURL *url = [NSURL URLWithString:path];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url

                                                       cachePolicy:NSURLRequestReloadIgnoringCacheData

                                                   timeoutInterval:10];



[request setHTTPMethod:@"POST"];



NSOperationQueue *queue = [NSOperationQueue new];



[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response,NSData *data,NSError *error){

    NSMutableDictionary *receiveStatusDic=[[NSMutableDictionary alloc]init];

    if (data) {



        NSDictionary *receiveDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];



        if ([[receiveDic valueForKey:@"resultCount"] intValue]>0) {



            [receiveStatusDic setValue:@"1" forKey:@"status"];

            [receiveStatusDic setValue:[[[receiveDic valueForKey:@"results"] objectAtIndex:0] valueForKey:@"version"]   forKey:@"version"];

        }else{



            [receiveStatusDic setValue:@"-1" forKey:@"status"];

        }

    }else{

        [receiveStatusDic setValue:@"-1" forKey:@"status"];

    }



    [self performSelectorOnMainThread:@selector(receiveData:) withObject:receiveStatusDic waitUntilDone:NO];

}];

}

  • (void)receiveData:(id)sender

{

NSString *serverVersion = [sender objectForKey:@"version"];//版本号



//获取应用当前版本

NSString *currentVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];



// 服务器版本号大于当前版本号

if ([serverVersion compare:currentVersion options:NSNumericSearch] == NSOrderedDescending) {



    NSString *content = [NSString stringWithFormat:@"版本名:%@",serverVersion];



    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"检测到新版本!"message:content delegate:self cancelButtonTitle: @"以后再说" otherButtonTitles:@"立即更新", nil];

    alert.tag = 1;

    [alert show];

} else {

    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"已是最新版本!" message:@"没有找到可更新的版本!" delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定", nil];

    [alert show];

}

}

  • (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{

if (alertView.tag == 1) {



    if (buttonIndex == 1){

        // 通过获取到的url打开应用在appstore,并跳转到应用下载页面

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1232138855"]];

    }

}

}

最后

以上就是善良方盒为你收集整理的AppStore url跳转链接(转)的全部内容,希望文章能够帮你解决AppStore url跳转链接(转)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部