先奉上地址:
github:https://github.com/boundlessocean/BLADLaunchImageController.git
效果如下:
demo.gif
生成的gif 有點渣
主要功能
1、根據URL顯示廣告圖
2、使用YYWebImage加載網絡圖片,可根據項目使用的網絡加載框架修改源碼使用其他框架(二逼了,做了圖片緩存后才想起YYWebImage是自帶緩存的)
3、提供duration 設置廣告圖顯示時間
4、廣告圖消失默認放大漸隱,可設置為直接移除。
使用方法
BLADLaunchViewController *launchController = [[BLADLaunchViewController alloc]init];
[launchController bl_setADLaunchImageWithURL:
[NSURL URLWithString:@"http://img1.gamedog.cn/2013/07/19/43-130G91539210.jpg"]
ADlaunchImagePlaceholder:nil
completion:nil];
// 以下屬性可設置
// launchController.duration = 5;
// launchController.dismissType = BLADLanuchImageDismissTypeNone;
接下來添加到根控制器
[rootViewController addChildViewController:launchController];
[rootViewController.view addSubview:launchController.view];