美文网首页
更新版本

更新版本

作者: 白鹿Divella | 来源:发表于2016-10-07 20:17 被阅读25次

- (void)versionUpdate{

//获得当前发布的版本

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0), ^{

//耗时的操作---获取某个应用在AppStore上的信息,更改id就行

NSString *string = [NSStringstringWithContentsOfURL:[NSURLURLWithString:@"http://itunes.apple.com/lookup?id=你的APP的id"]

encoding:NSUTF8StringEncodingerror:nil];

NSData *data = [stringdataUsingEncoding:NSUTF8StringEncoding];

NSDictionary *dic = [NSJSONSerializationJSONObjectWithData:dataoptions:NSJSONReadingMutableLeaveserror:nil];

//获得上线版本号

NSString *version = [[[dicobjectForKey:@"results"]firstObject]objectForKey:@"version"];

NSString *updateInfo = [[[dicobjectForKey:@"results"]firstObject]objectForKey:@"releaseNotes"];

//获得当前版本

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

dispatch_async(dispatch_get_main_queue(), ^{

//更新界面

if ( version &&![versionisEqualToString:currentVersion]) {

//有新版本

NSString *message = [NSStringstringWithFormat:@"有新版本发布啦!\n%@",updateInfo];

UIAlertView *alertView = [[UIAlertViewalloc]initWithTitle:@"温馨提示"message:messagedelegate:selfcancelButtonTitle:@"忽略"otherButtonTitles:@"前往更新",nil];

//此种写法文字会居中显示,这样视觉效果很不好,下列demo中已经解决将alertview上的文字具有显示 先关文章链接http://blog.csdn.net/bddzzw/article/details/52169261

[alertViewshow];

}else{

//已是最高版本

NSLog(@"已经是最高版本");

}

});

});

}

/*根据被点击按钮的索引处理点击事件--当被按钮被点击了这里做出一个反馈*/

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

{

if (buttonIndex ==1) {

NSString *url =@"你的APP在APPstore的网址";//

https://itunes.apple.com/cn/app/qq/id444934666?mt=8 QQ在APPstore的网址

[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:url]];

}

}

相关文章

  • 版本更新

    【更新内容】测试更新 【更新内容】 【版本】0.9【版本】

  • 远程更新 - 草稿 - 草稿

    【版本】2.0【版本】 【链接】【链接】 【更新】更新啦!【更新】

  • npm 更新版本

    npm 更新到最新的版本或者更新到指定的版本 查看npm的当前版本 更新到最新版本: 更新到指定版本:

  • 上进远程更新

    【版本】1.1【版本】 【链接】【链接】 【更新】【更新】

  • 辞别新版远程更新

    【版本】2.0【版本】 【链接】【链接】 【更新】【更新】

  • 测试

    更新内容《新版本》更新内容 更新版本《3.0》更新版本 更新链接《https://www.lanzous》更新链接

  • WriteConcern

    版本信息 当前版本 v1.0 版本历史 版本 更新时间 更新人 更新内容 v1.0 2015/10/...

  • rjkgx

    更新版本【】更新版本 更新内容《》更新内容 更新链接〖〗更新链接

  • 版本更新

    一般安卓应用在设置选项都有版本更新的功能,方便用户及时更新到最新版本应用内更新分为以下几个步骤: 1、通过接口获取...

  • 版本更新

    【更新内容】测试版本【更新内容】【版本】1.0【版本】【大小】1.9mb【大小】【地址】www.baidu.com...

网友评论

      本文标题:更新版本

      本文链接:https://www.haomeiwen.com/subject/bwnyyttx.html