其实大概逻辑是这样的:每次app启动,都去服务器请求有没有相关的广告图片,然后存到本地,当达到条件后 下次启动就会先取出本地存储的数据,然后加载到window上,做到动态广告,类似于淘宝的 今日头条的等等;
举证一个简单的例子 :
首先制作一个在线配置文件,我是将自己需要的参数写成json文件放在服务器上。请求这个配置文件和请求接口一样。
文件内容如下
{"errno":0,"result": {"launch_image": {"show":1,"micro":"http://test.test/1.jpg","small":"http://test.test/2.jpg","middle":"http://test.test/3.jpg","big":"http://test.test/4.jpg"} }}
简单解释一下,show在本地解析为BOOL值,1代表有动态启动图要显示;micro、small、middle、big分别对应3.5寸、4寸、4.7寸和5.5寸的设备所需的图片的地址。
确保这个文件能被你请求到并正确解析,接下来先考虑显示启动图的逻辑。
先上代码:
//取到已经下载好的启动图片的路径NSString*path =NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES).lastObject;NSString*fileName = [path stringByAppendingPathComponent:[[NSUserDefaultsstandardUserDefaults] valueForKey:@"launchImage"]];//将图片文件初始化UIImage*img = [UIImageimageWithContentsOfFile:fileName];//如果有图片存在if(img) {//初始化一个imageView,并添加到window上UIImageView*imgView = [[UIImageViewalloc]initWithFrame:[UIApplicationsharedApplication].keyWindow.bounds]; imgView.image = img; [self.window addSubview:imgView]; dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3*NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ [imgView removeFromSuperview]; }); }
上面的代码应该写在AppDelegate.m的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中,每次app启动的时候都会去缓存文件中找文件名是预先存在NSUserDefaults中的key为launchImage的值的文件,如果找到了就将imageView添加到window上面,过三秒再移除。
第二部分是更新下载启动图的逻辑,这部分代码最好写在app每次启动必经的controller里面,比如tabbarController或者rootNavigationController里面,保证每次app启动都能运行这段代码,检查和下载启动图片。
NSIntegerscreenHeight = [UIScreenmainScreen].bounds.size.height;CGFloatscale =0;NSString*name;switch(screenHeight) {case480: name = info.launch_image.micro; scale =2;break;case568: name = info.launch_image.small; scale =2;break;case667: name = info.launch_image.middle; scale =2;break;case736: name = info.launch_image.big; scale =3;break;}if(info.launch_image.show) { [UIImagedownLoadImage:name scale:scale success:^(UIImage*img) {NSLog(@"launchImage download Success"); [[NSUserDefaultsstandardUserDefaults]setValue:name.lastPathComponent forKey:@"launchImage"]; }];}else{NSString*path =NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES).lastObject;NSString*fileName = [path stringByAppendingPathComponent:name.lastPathComponent];if([[NSFileManagerdefaultManager]fileExistsAtPath:fileName]) {NSError*error;if([[NSFileManagerdefaultManager] removeItemAtPath:fileName error:&error]) {NSLog(@"remove file success"); }else{NSLog(@"%@", error); } }}
简单说明一下,这段代码里面的info就是之前写好的配置文件,请求成功后对象化的数据。第一部分到switch语句结束都是为了通过当前屏幕的宽
度判断需要下载哪一个图片文件。通过配置文件的show字段来判断是否有文件需要下载,有的话就下载下来,并且在NSUserDefaults中设置一个
key为launchImage值为所下载文件的文件名的字段。如果show的值是NO的话就找到缓存的文件删除之