1抛猫、獲取當(dāng)前版本
NSString *current_version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
2卖宠、發(fā)送請求從服務(wù)器獲取APP商店版本(這里的請求看各自的封裝情況,讓服務(wù)器返回APP商店里面的最新版本)
3二打、比較版本
if(![current_version isEqualToString:service_version])
?{
? ? ? ? ? ? ? ? if([current_version compare:service_version options:NSNumericSearch] == NSOrderedDescending)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? NSLog(@"不需要更新");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? NSLog(@"需要更新");
????????????????}
}
4、跳轉(zhuǎn)到APP商店
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://itunes.apple.com/us/app/id%@?&mt=8",@"應(yīng)用ID"]];
?[[UIApplication sharedApplication] openURL:APPStoreURL];