首页 > 移动平台 > 详细

iOS Appstore 版本更新

时间:2017-06-13 15:50:04      阅读:330      评论:0      收藏:0      [点我收藏+]

1,版本更新 通过比较构建号/版本号 检查更新

 

///  构建号 50
//    NSString * currentVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleVersion"];
    /// 版本号 2.2.0
    //CFBundleShortVersionString
    NSString * currentVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
   
    NSLog(@"receiveData=%@",sender);
    //    sender[@"version"]  @"1.1.3"
    if ( [sender[@"version"] compare:currentVersion options:NSNumericSearch] == NSOrderedDescending) {
        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"提示" message:@"有新版本更新,是否前往AppStore下载" delegate:self cancelButtonTitle:@"不去" otherButtonTitles:@"立即前往", nil];
        alert.tag = 1000;
        /// 上线前打开
        [alert show];
    }

 

iOS Appstore 版本更新

原文:http://www.cnblogs.com/code-Officer/p/7001224.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!