iOS Appstore 版本更新

Posted wangwei-Carry

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS Appstore 版本更新相关的知识,希望对你有一定的参考价值。

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 版本更新的主要内容,如果未能解决你的问题,请参考以下文章

iOS获取当前AppStore版本号与更新

从AppStore获取一个iOS App的版本信息

ios迭代版本,在appstore显示更新功能怎么做

iOS 为什么使用xcode8上传app包到appStore无法构建版本

iOS开发之获取APP在AppStore中的版本号

如何在应用商店提交更新版本的 ios 应用程序? [关闭]