iOS 之 关于新版本更新

步凑:

1.得到app在商店的版本号

2.得到系统的版本号

3.比较版本号 如果不一致就提示更新

4.第一次提示用户的时候拿到系统时间保存起来,下次进来之前取到当前时间和存的时间比较,如果大于一天就提示,这样就避免了频繁提示用户,导致用户体验不好

说明:

   由于直接提示给用户,苹果不让上架,所以思路是这样的   

1.叫后台写个接口,这个接口返回一个固定值 比如返回的是 0 

2.我们根据这个返回的数据提示用户,如果返回0那么就比较版本号,我们上传app的时候叫后台返回一个 1 ,等我们发布完毕,叫后台改成 0 就可以提示更新了,绕过苹果审核的时候,你懂的

下面代码

第一步:调用后台的接口得到一个数 ,如果是 0 就提示更新,非0 不提示

/** 由返回的数据决定是否提示更新 */

-(void)getisVersionBeforeNumber{

TripleDES *tri =[[TripleDES alloc]init];//使用block传值

[tri isTheVersionNumberFinishBlock:^(id result) {

NSString *numversion = result;

//        numversion = @"True";

if ([numversion isEqualToString:@"True"]) {

BSLog(@"返回的数据是 True 比较版本号提示更新");

[self checkVersionInfo];

}else{

//如果返回的是其他数据就什么都不做,只有返回11的时候参会提示更新

BSLog(@"返回的是 = %@ 什么都不做",numversion);

}

}];

}

第二步:这是得到app在商店里的版本信息,改掉自己app的编号即可

-(void)checkVersionInfo {

//获取发布版本的version

NSString *string = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"https://itunes.apple.com/lookup?id=1071081670"] encoding:NSUTF8StringEncoding error:nil];

//    NSLog(@"string = %@",string);

if (string !=nil && [string length] > 0 && [string rangeOfString:@"version"].length ==7) {

[self checkAppUpdate:string];

}

}

第三步:比较当前版本与新上线版本作比较,这里想着如果每次打开app都提示用户,这样频率太高,用户体验不好,所以把第一次提示用户的系统时间存起来,下次进来拿到存的时间,和当前时间做比较,大于一天才提示用户。对于是否在WiFi状态才提示这个看个人需求,本文章没有做这一块

//比较当前版本与新上线版本作比较

-(void)checkAppUpdate:(NSString *)appInfo {

//获取当前版本

//    NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];

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

//获取appStore上版本信息

NSString *info = [appInfo substringFromIndex:[appInfo rangeOfString:@"\"version\":"].location+10];

info = [[info substringToIndex:[info rangeOfString:@","].location] stringByReplacingOccurrencesOfString:@"\"" withString:@""];

//    NSLog(@"info = %@  app_Version = %@",info,app_Version);

int  dayTime = [self getIntervaTimeHour];//得到2个时间间隔天数

BSLog(@"上次保存的时间的天数和现在的天数相比是否大于 == %d",dayTime);

if (dayTime >= 1) {

/**

判断,如果当前版本与发布的版本不同,则进入更新,如果相等,那么当前就是最高版本

*/

if (![info isEqualToString:app_Version]) {

//            NSLog(@"提示更新,跳转appstore");

NSString *currVersions = [NSString stringWithFormat:@"最新的版本号为:%@",info];

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"有新的版本" message:currVersions preferredStyle:UIAlertControllerStyleAlert];

[alert addAction:[UIAlertAction actionWithTitle:@"稍后再说" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

//保存当前系统时间,下次启动的时候判断是否提示

NSString *systemTime = [self getSystemTime];

NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];

[userDefaults setObject:systemTime forKey:@"systemTime"];

[userDefaults synchronize];

}]];

[alert addAction:[UIAlertAction actionWithTitle:@"立刻更新" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

// https:itunes.apple.com/cn/app/bian-li-shou-yin-tai/id1071081670?mt=8

NSURL *url = [NSURL URLWithString:@"https:itunes.apple.com/cn/app/bian-li-shou-yin-tai/id1071081670?mt=8"];

[[UIApplication sharedApplication] openURL:url];

//保存当前系统时间,下次启动的时候判断是否提示

NSString *systemTime = [self getSystemTime];

NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];

[userDefaults setObject:systemTime forKey:@"systemTime"];

[userDefaults synchronize];

}]];

[self presentViewController:alert animated:YES completion:nil];

}

}

//    else{

//        NSLog(@"什么都不做");

//    }

//    if ([info isEqualToString:app_Version]) {

//        SHOWHUDERR(@"当前版本是最新版本");

//    }

}


第四步:/得到2个时间间隔

//得到2个时间间隔

-(int)getIntervaTimeHour{

int  DayNum = 1;

//取得上次存的系统时间,判断是否提示更新

NSUserDefaults *userDefaultes = [NSUserDefaults standardUserDefaults];

NSString *saveTime = [userDefaultes stringForKey:@"systemTime"];

//    BSLog(@"saveTime = %@",saveTime);

if (saveTime != nil) {

NSString *systemTime = [self getSystemTime];

//      saveTime = @"2016-08-21 16:21:35";//2016-08-23 16:21:35

BSLog(@"保存的系统时间 = %@  当前系统时间= %@",saveTime,systemTime);

NSDateFormatter* dateFormat1 = [[NSDateFormatter alloc] init];//实例化一个NSDateFormatter对象

[dateFormat1 setDateFormat:@"yyyy-MM-dd hh:mm:ss"];//设定时间格式,要注意跟下面的dateString匹配,否则日起将无效

NSDate *datesave =[dateFormat1 dateFromString:saveTime];

NSDateFormatter* dateFormat2 = [[NSDateFormatter alloc] init];

[dateFormat2 setDateFormat:@"yyyy-MM-dd hh:mm:ss"];

NSDate *datesystme = [dateFormat2 dateFromString:systemTime];

//        NSDate *datestr = [datesa-ve earlierDate:datesystme];//比较大的那个时间

//        NSLog(@"%@",datestr);

NSCalendar *chinese = [[NSCalendar alloc]initWithCalendarIdentifier:NSGregorianCalendar];

NSUInteger unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit | NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit;

NSDateComponents *cps = [ chinese components:unitFlags fromDate:datesave  toDate:datesystme  options:0];

//        NSInteger diffYear = [cps year];

//        NSInteger diffMon = [cps month];

NSInteger diffDay = [cps day];

//        NSInteger diffHour = [cps hour];

//        NSInteger diffMin = [cps minute];

//        NSInteger diffSec = [cps second];

NSNumber *Day = [NSNumber numberWithInteger:diffDay];

DayNum = [Day intValue];

//        TimeArray = @[Year,Mon,Day,Hour,Min,Sec];

//        BSLog(@" 年: %ld  月: %ld,日 ; %ld, 时: %ld,分 :%ld, 秒:%ld", (long)diffYear, (long)diffMon, (long)diffDay, (long)diffHour, (long)diffMin,(long)diffSec );

}

//    DayNum = 3;

return DayNum;

}

第五步:获得系统时间

/**

*  获得系统时间

*

*  @return 返回的格式 2016-08-23 10:52:37 87

*/

-(NSString *)getSystemTime{

NSDate *currentDate = [NSDate date];//获取当前时间,日期

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];

NSString *dateString = [dateFormatter stringFromDate:currentDate];

return dateString;

}

你可能感兴趣的:(iOS 之 关于新版本更新)