版本更新

作者: 墨徕 | 来源:发表于2016-11-23 14:57 被阅读37次

-(void)onCheckVersion

{

NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];

NSString *currentVersion = [infoDic objectForKey:@"CFBundleVersion"];

NSString *URL = @"http://itunes.apple.com/lookup?id=946712292";

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];

[request setURL:[NSURL URLWithString:URL]];

[request setHTTPMethod:@"POST"];

NSHTTPURLResponse *urlResponse = nil;

NSError *error = nil;

NSData *recervedData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];

NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:recervedData options:NSJSONReadingMutableContainers error:nil];

NSArray *infoArray = [dic objectForKey:@"results"];

if ([infoArray count]) {

NSDictionary *releaseInfo = [infoArray objectAtIndex:0];

NSString *lastVersion = [releaseInfo objectForKey:@"version"];

if (![lastVersion isEqualToString:currentVersion]) {

//trackViewURL = [releaseInfo objectForKey:@"trackVireUrl"];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"更新" message:@"有新的版本更新,是否前往更新?" delegate:self cancelButtonTitle:@"关闭" otherButtonTitles:@"更新", nil];

alert.tag = 10200;

[alert show];

}

else

{

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"更新" message:@"此版本为最新版本" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];

alert.tag = 10201;

[alert show];

}

}

}

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

{

if (alertView.tag==10200) {

if (buttonIndex==1) {

NSURL *url =[NSURL URLWithString:@"https://itunes.apple.com/cn/app/ri-shi-qing-ri-cheng-ri-ji/id946712292?mt=8"];

[[UIApplication sharedApplication]openURL: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/xmlvpttx.html