随诊医生2---检查版本更新

系统启动时,在AppDelegate.application方法中,初始化完友盟、SharedSDK和环信之后,就开始检查版本更新了。这时检查版本更新实际了有些早,因为如果需要进行版本灰度发布时,需要知道用户的ID,在此处检查版本更新则不能实现基于用户的灰度版本发布。

系统先初始化HTTP请求需要的类对象:

    _dtHttpHelper = [[DTHttpHelper alloc]init];
    _dtHttpHelper.delegate = self;

其中将HTTP访问类的回调代理设置为本类,就是当HTTP请求成功,有合法数据返回时,会调用本类定义的回调函数来进行处理。

AppDelegate.application中检查版本更新的代码如下所示:

- (void)checkVersionByServer{
    NSString *urlStr = [NSString stringWithFormat:@"%@getVersion&roleId=2&platform=%@",ServerIPCMD,@"IOS"];
    [_dtHttpHelper getDataFormServerWithUrlString:urlStr andCmdType:DTgetVersion];
}

当HTTP请求成功后,将调用如下的回调函数进行数据处理:

- (void)DTHttpHelperSuccessWithDataSource:(NSDictionary *)dataSource andCmdType:(NSInteger)cmdType{
    if (cmdType == DTgetVersion)
    {
        if ([dataSource objectForKey:KStatus]!= [NSNull null] && [[dataSource objectForKey:KStatus] isEqualToString:KOk])
        {
            if([[dataSource objectForKey:KStatus] isEqualToString:KOk])
            {
                if ([dataSource objectForKey:@"version"])
                {
                    NSString *newVersion = [dataSource objectForKey:@"version"];
                    NSString *curVersion = [[NSUserDefaults standardUserDefaults]objectForKey:KCurVersion];
                    long long newVersionNum = [[NSString stringWithFormat:@"%@",[dataSource objectForKey:@"flagNum"]]longLongValue];
                    long long curVersionNum =  [[NSString stringWithFormat:@"%@",[[NSUserDefaults standardUserDefaults]objectForKey:KCurVersionNum]]longLongValue];
                    if (newVersionNum > curVersionNum)
                    {
                        _downloadUrl = [NSString stringWithFormat:@"%@",[dataSource objectForKey:@"downloadUrl"]];
                        [[NSUserDefaults standardUserDefaults]setBool:YES forKey:KHaveNewVersion];
                        [[NSUserDefaults standardUserDefaults]setObject:newVersion forKey:KNewVersion];
                        [[NSUserDefaults standardUserDefaults]synchronize];
                        NSString *isForced = [NSString stringWithFormat:@"%@",[dataSource objectForKey:@"isForced"]];
                        UIAlertView *versionAlert = nil;
                        if ([isForced isEqualToString:@"1"])
                        {
                            versionAlert = [[UIAlertView alloc]initWithTitle:@"请更新最新版本,否则无法使用。" message:@"" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
                        }
                        else
                        {
                            versionAlert = [[UIAlertView alloc]initWithTitle:@"发现新版本,是否更新?" message:@"" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:@"取消", nil];
                        }
                        versionAlert.tag = 10001;
                        [versionAlert show];
                    }
                }
            }
        }
    }
}

版本号采用一个整数来表示,数值越大代表版本越新,分为强制更新和普通更新,强制更新如果用户不更新则不允许用户继续使用。

如果是强制更新时,消息框中只有一个确定按钮,而如果不是强制更新时,消息框中有确定和取消两个按钮,如果用户点取消按钮时,则直接向下执行,不进行版本更新操作。如果用户点击确定按钮,会调用AppDelegate中的回调函数:

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{
    if (alertView.tag == 10001)
    {
        if (buttonIndex == 0)
        {
            BOOL downloadApp = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:_downloadUrl]];
            [self exitApplication];
        }
    }

如果用户点击的是版本提示的消息框,并且按的是确定按钮,则执行版本更新操作。

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-10 01:55:27

随诊医生2---检查版本更新的相关文章

App上架版本号配置的注意事项:CFBundleVersion与CFBundleShortVersionString设置,以及内部检查版本更新的代码

一.CFBundleVersion与CFBundleShortVersionString设置 CFBundleVersion:标识内部版本号,如果发包错误时可以将错误的撤回及时更改内部版本号即可. CFBundleShortVersionString:代表应用的发布版本号,该版本的版本号是三个时期分隔的整数组成的字符串.第一个整数代表重大修改的版本,如实现新的功能或重大变化的修订.第二个整数表示的修订,实现较突出的特点.第三个整数代表维护版本. 如上图:Version对应的就是CFBundleS

ios 检查版本更新

// // AppCheckVersion.h // MobileBusiness // // Created by kevin on 14-7-4. // // #import <Foundation/Foundation.h> #import "Reachability.h" @class AppCheckVersion; @protocol AppCheckVersionDelegate <NSObject> @optional -(void)checkV

随诊医生1---启动流程分析

随诊医生的启动是从SZDoctor/AppDelegate.application方法开始的,代码如下所示: _rootTBViewController1 = [[MainViewController alloc]init]; _rootTBViewController1.delegate = self; self.window.rootViewController = _rootTBViewController1; [self.window makeKeyAndVisible]; 其中Main

检查版本更新的https://itunes.apple.com/lookup?id=XXX 返回的没有数据

Looks like your app is ONLY available in Thailand storefront - so the lookup should include country code in the base lookup URL: http://itunes.apple.com/th/lookup?bundleId=com.writingfuture.where2 The alternative to using bundleId is simply looking u

SmsManager - Windows Phone手机PC端短信管理工具检查版本更新地址

SmsManager - Windows Phone手机PC端短信管理工具检查版本更新时将抓取此页面中两个特殊字符串之间的文字内容(共3处),并替换\n为换行,html转义字符为原字符. wpsmsmanager0-start[1.2]end-wpsmsmanager0 wpsmsmanager1-start[新版本V1.2已发布(2015/4/10)\n更新说明:\n可导出短信至Android手机\n前往查看?]end-wpsmsmanager1 wpsmsmanager2-start[htt

iOS检查版本更新

项目原来的检查代码适用于1.2 1.3格式.一般正常的项目格式应该是1.2.2 ,如此大版本.小版本格式. 贴下代码 -(void)onCheckVersion { dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(queue, ^{ NSDictionary *infoDic = [[NSBundle mainBundle] infoDic

Android 轻松实现后台搭建+APP版本更新

http://blog.csdn.net/u012422829/article/details/46355515 (本文讲解了在Android中实现APP版本更新,文末附有源码.) 看完本文,您可以学到: 1.版本更新的方法 2.与后台的交互 3.Android中Handler的使用 4.Android中ProgressDialog的使用 话不多说,先来看看效果图: 一.大致思路阐述 首先,我们要有一个可以被手机访问的后台. 这里有两种方法,在调试的时候我们可以利用手机和笔记本连到同一个局域网的

android app版本更新升级

参考了其他一些大神的文章,最后自己也写了一下作为一个笔记吧,因为是菜鸟,希望有发现错误的地方能够帮忙指出,本文最后也提出几个我发现尚未被我解决的问题,希望大家能帮忙看看. demo的逻辑过程: 1.进入程序 2.检查是否有版本更新,如果有则询问用户是否更新,否则维持原状 3.检测当前网络状态并且询问用户是否进行版本更新,如果是则进行更新,否则维持原状 4.切换网络,当当前网络为wifi时,检查版本更新,重复2.3. 结构: CommonAsyncTask:执行网络请求操作 ConnectionU

Android程序版本更新--通知栏更新下载安装(转)

Android应用检查版本更新后,在通知栏下载,更新下载进度,下载完成自动安装,效果图如下: 检查当前版本号 AndroidManifest文件中的versionCode用来标识版本,在服务器放一个新版本的apk,versioncode大于当前版本,下面代码用来获取versioncode的值 PackageInfo packageInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), 0); int