动态 iOS 启动广告图
2016-08-15 本文已影响3900人
kuai空调
按照苹果的官方的建议,启动图最好是不填充数据的app首页的截图,这样可以让用户感觉应用的响应速度很快,但是这个建议现在已经很少有app执行了,我本人更推崇苹果官方的做法,但是无奈项目要求,所以……
废话不多说。一下内容都是我的实现,仅供参考
首先制作一个在线配置文件,我是将自己需要的参数写成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:[[NSUserDefaults standardUserDefaults] valueForKey:@"launchImage"]];
//将图片文件初始化
UIImage *img = [UIImage imageWithContentsOfFile:fileName];
//如果有图片存在
if (img) {
//初始化一个imageView,并添加到window上
UIImageView *imgView = [[UIImageView alloc]initWithFrame:[UIApplication sharedApplication].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启动都能运行这段代码,检查和下载启动图片。
NSInteger screenHeight = [UIScreen mainScreen].bounds.size.height;
CGFloat scale = 0;
NSString *name;
switch (screenHeight) {
case 480:
name = info.launch_image.micro;
scale = 2;
break;
case 568:
name = info.launch_image.small;
scale = 2;
break;
case 667:
name = info.launch_image.middle;
scale = 2;
break;
case 736:
name = info.launch_image.big;
scale = 3;
break;
}
if (info.launch_image.show) {
[UIImage downLoadImage:name scale:scale success:^(UIImage *img) {
NSLog(@"launchImage download Success");
[[NSUserDefaults standardUserDefaults]setValue:name.lastPathComponent forKey:@"launchImage"];
}];
}else{
NSString *path = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).lastObject;
NSString *fileName = [path stringByAppendingPathComponent:name.lastPathComponent];
if ([[NSFileManager defaultManager]fileExistsAtPath:fileName]) {
NSError *error;
if ([[NSFileManager defaultManager] removeItemAtPath:fileName error:&error]) {
NSLog(@"remove file success");
}else{
NSLog(@"%@", error);
}
}
}
简单说明一下,这段代码里面的info就是之前写好的配置文件,请求成功后对象化的数据。第一部分到switch语句结束都是为了通过当前屏幕的宽度判断需要下载哪一个图片文件。通过配置文件的show字段来判断是否有文件需要下载,有的话就下载下来,并且在NSUserDefaults中设置一个key为launchImage值为所下载文件的文件名的字段。如果show的值是NO的话就找到缓存的文件删除之。