iOS版本更新

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版本更新)