美文网首页
iOS版本更新

iOS版本更新

作者: 懒懒的程序员 | 来源:发表于2018-03-30 11:33 被阅读0次

    1、获取当前版本

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

    2、发送请求从服务器获取APP商店版本(这里的请求看各自的封装情况,让服务器返回APP商店里面的最新版本)

    3、比较版本

    if(![current_version isEqualToString:service_version])

     {

                    if([current_version compare:service_version options:NSNumericSearch] == NSOrderedDescending)

                    {

                        NSLog(@"不需要更新");

                    }

                    else

                    {

                        NSLog(@"需要更新");

                    }

    }

    4、跳转到APP商店

    NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://itunes.apple.com/us/app/id%@?&mt=8",@"应用ID"]];

     [[UIApplication sharedApplication] openURL:APPStoreURL];

    相关文章

      网友评论

          本文标题:iOS版本更新

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