ios 版本更新提示

苹果审核中如果发现项目中有版本更新提示,将禁止上架,那么我们可以让后台传一个字段,上架前后修改一下即可,或者通过下面的方式,判断当前版本和线上版本的大小,如果当前版本小于线上版本则弹出提示,否则不提示,这样苹果审核的时候就不发发现了,同时不需要后台传入字段,进行判断,当然这种方法是已知自己的app id的情况下才可以的,下面介绍一下直接对比版本号的方法

@implementation UpdateVersion
+ (instancetype)shareVersionUpdateManage {
    static UpdateVersion *instance = nil;
    staticdispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[selfalloc] init];
   });
    return instance;
}

- (void)versionUpdate{
    //获得当前发布的版本   
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0), ^{
        //耗时的操作---获取某个应用在AppStore上的信息,更改id就行
        NSString *string = [NSStringstringWithContentsOfURL:[NSURLURLWithString:@"http://itunes.apple.com/lookup?id=00000000000"]encoding:NSUTF8StringEncodingerror:nil];
        NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
      // 判断是否取到信息
        if (![data isKindOfClass:[NSDataclass]]) {
            return ;
        }
        NSDictionary *dic = [NSJSONSerializationJSONObjectWithData:data options:NSJSONReadingMutableLeaveserror:nil];
        //获得上线版本号
        NSString *version = [[[dic objectForKey:@"results"]firstObject]objectForKey:@"version"];
        NSString *updateInfo = [[[dic objectForKey:@"results"]firstObject]objectForKey:@"releaseNotes"];
        //获得当前版本
     NSString *currentVersion = [[[NSBundlemainBundle]infoDictionary]objectForKey:@"CFBundleShortVersionString"];

        

        // 将线上版本和当前版本转化成int型
        int versionInt = [[version stringByReplacingOccurrencesOfString:@"."withString:@""] intValue];
        int currentVersionInt = [[currentVersion stringByReplacingOccurrencesOfString:@"."withString:@""] intValue];      dispatch_async(dispatch_get_main_queue(), ^{
        //更新界面
            NSLog(@"线上版本:%d 当前版本:%d",versionInt,currentVersionInt);
            if (versionInt > currentVersionInt) {
                //有新版本
                NSString *message = [NSStringstringWithFormat:@"有新版本发布啦!\n%@",updateInfo];
                UIAlertView *alertView = [[UIAlertViewalloc]initWithTitle:@"温馨提示"message:message delegate:selfcancelButtonTitle:@"忽略"otherButtonTitles:@"前往更新",nil];
                [alertView show];
            }else{
                //已是最高版本
                NSLog(@"已经是最高版本");
            }
        });
    });
}

然后在根控制器中,调用一下方法
- (void)checkVersion{
    NSString *netWorkingState = [PublicMethod networkingStatesFromStatebar];
    if ([netWorkingState  isEqual: @"notReachable"]) {
        LYLog(@"当前无网络连接");
    }else{
        [[CRUpdateVersion shareVersionUpdateManage] versionUpdate];
    }
}

2、以上为已上线项目的更新,这样做有个风险,很可能会在审核的时候被检测到有版本更新的代码,所以安全起见,还是使用从后台获取数据比较好

新建一个工具类
@interface JFApplication : NSObject
@property (nonatomic, strong)AFNetworkReachabilityManager* networkManager;
- (void)checkAppVersionOnCompletion:(void (^)(JFVersionResponse *))completion;



// .m中实现
- (void)checkAppVersionOnCompletion:(void (^)(JFVersionResponse *))completion {
    if (_checkingVersion) {
        return;
    }
    _checkingVersion = YES;
    __weak typeof(self) weakSelf = self;
    JFVersionRequest *request = [[JFVersionRequest alloc] init];
    [[JFNetworkManager sharedManager] post:request forResponseClass:[JFVersionResponse class] success:^(WXResponse *response) {
        _checkingVersion = NO;
        [weakSelf handleVersionResponse:(JFVersionResponse *)response];
        if(completion){
            completion((JFVersionResponse *)response);
        }
    } failure:^(NSError *error) {
        _checkingVersion = NO;
        if (completion) {
            completion(nil);
        }
    }];
}

- (void)handleVersionResponse:(JFVersionResponse *)response {
    if ([response success]) {
        JFVersion * version = response.data;
        if([JFVersion isNewVersion:version.version]) {
            NSMutableString *message = [NSMutableString string];
            for (int i = 0;i < version.releaseLog.count;i++) {
                NSString *item = version.releaseLog[i];
                [message appendString:item];
                if (i != version.releaseLog.count - 1) {
                    [message appendString:@"\n"];
                }
            }
            [[WXAlert sharedAlert] showConfirmMessage:message withTitle:kStr(@"New Version") cancelButtonTitle:kStr(@"Cancel") okButtonTitle:kStr(@"Download") onCompletion:^(NSInteger buttonIndex, UIAlertView *alertView) {
                if (buttonIndex == 1) {
                    kOpenURL(version.releaseUrl);
                }
            }];
        }
    }
}

2.2 所需的模型类

#import "JFResponse.h"
#import "JFVersion.h"

@interface JFVersionResponse : JFResponse
@property(nonatomic,strong)JFVersion *data;
@end

#import "JFVersionResponse.h"

@implementation JFVersionResponse

@end


#import "WXObject.h"

@interface JFVersion : WXObject
@property(nonatomic,copy)NSString *version;//版本号
@property(nonatomic,copy)NSString *name;
@property(nonatomic,copy)NSString *releaseTime;//版本发布时间
@property(nonatomic,copy)NSString *releaseUrl;//版本获取地址
@property(nonatomic,strong)NSArray *releaseLog;//版本简要日志

+ (BOOL) isNewVersion:(NSString *)version;
@end

#import "JFVersion.h"

@implementation JFVersion

+ (BOOL) isNewVersion:(NSString *)version {
    if([NSString isNullOrEmpty:version]){
        return NO;
    }
    NSArray *versions = [version splitBy:@"."];
    if(!versions || versions.count==0){
        return NO;
    }
    NSArray *currentVerions = [kAppVersion splitBy:@"."];
    if(!currentVerions || currentVerions.count==0){
        return NO;
    }
    for(int i=0,n=(int)MIN(versions.count, currentVerions.count);i<n;i++){
        int v = [[currentVerions objectAtIndex:i] getIntValue];
        int v2 = [[versions objectAtIndex:i] getIntValue];
        if(v<v2){
            return YES;
        }
        if(v>v2) {
            return NO;
        }
    }
    if (versions.count>currentVerions.count) {
        for (NSInteger i=currentVerions.count; i<versions.count; i++) {
            int v = [[versions objectAtIndex:i] getIntValue];
            if (v>0) {
                return YES;
            }
        }
    }
    return NO;
}

@end

- (NSArray*) splitBy:(NSString *)splitString{
    return [self componentsSeparatedByString: splitString];
}

#define kAppVersion [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]


// 最后在根控制器中调用
[[JFApplication sharedApplication] checkAppVersionOnCompletion:nil];

以上就是版本更新的方法
效果如图

WechatIMG307.jpeg

3 判断逻辑放在后台

我现在公司,在每个请求中加入了版本号这个字段,每次请求都会带上这个字段,并且每次启动app都会有借口调用,只要发现当前的版本号不是最新版本号,那么app将自动退出登录然后弹出警告,这个警告的内容可以后台配置,这样前台几乎不用做什么事情,负责弹出一个警告框就行

当然,以上都是对于没有重大bug,不需要强制用户更新的情况,如果app有重大bug,必须用户升级才能使用,这时候需要后台加上一个字段,表明是否需要强制用户更新,否则用户无法使用app,这里就不做细致介绍了,加上一个字段,加上一个判断就行

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容