一.前言:
1.之前由於專案需要,寫了一個開屏廣告元件XHLaunchAd,主要自用,後來發現越來越多的開發者,有這個需求.
2.隨著使用人數的增加,部分開發者使用者提出了一些需求和問題,XHLaunchAd並不能很好的解決.
3.於是決定最近抽時間,把這個元件優化重構一下,解決網友之前提出一些問題和需求,並增加一些新功能,釋出v3.0.0版本.
4.該專案目前已經收到 700 多個 star ,目前已經更新到v3.0.1版本
5.程式碼地址: github.com/CoderZhuXH/…
-> XHLaunchAd (3.0.1)
開屏廣告解決方案,支援圖片/視訊、靜態/動態、全屏/半屏廣告,支援iPhone/iPad,自帶圖片下載、快取功能,無其他三方依賴
pod 'XHLaunchAd', '~> 3.0.1'
- Homepage: https://github.com/CoderZhuXH/XHLaunchAd
- Source: https://github.com/CoderZhuXH/XHLaunchAd.git
- Versions: 3.0.1, 3.0.0, 2.2.2, 2.2.1, 2.2.0, 2.1.9, 2.1.8, 2.1.7, 2.1.6,
2.1.5, 2.1.4, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.1, 2.0, 1.2, 1.1.4, 1.1.3,
1.1.2, 1.1, 1.0 [master repo]
複製程式碼
二.主要更新:
1.增加mp4視訊開屏廣告 2.增加對本地資源支援 3.增加預快取介面 4.增加更多屬性及介面,具有更強的自定義性 5.可設定顯示完成動畫型別 6.可自定義跳過按鈕 7.擁有更優雅的接入介面 8.優化快取機制,bug fix等等
三.接入後效果:
四.使用方法:
在AppDelegate didFinishLaunchingWithOptions方法中新增下面程式碼(提前設定App啟動頁為LaunchImage)
-1.新增圖片開屏廣告⬇️
--1.1使用預設配置快速初始化
//1.使用預設配置初始化
XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration defaultConfiguration];
//廣告圖片URLString/或本地圖片名(.jpg/.gif請帶上字尾)
imageAdconfiguratuin.imageNameOrURLString = @"image0.jpg";
//廣告點選開啟連結
imageAdconfiguration.openURLString = @"http://www.returnoc.com";
//顯示圖片開屏廣告
[XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];
複製程式碼
--1.2自定義配置初始化
//2.自定義配置初始化
XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration new];
//廣告停留時間
imageAdconfiguration.duration = 5;
//廣告frame
imageAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-150);
//廣告圖片URLString/或本地圖片名(.jpg/.gif請帶上字尾)
imageAdconfiguration.imageNameOrURLString = @"image0.jpg";
//網路圖片快取機制(只對網路圖片有效)
imageAdconfiguration.imageOption = XHLaunchAdImageRefreshCached;
//圖片填充模式
imageAdconfiguration.contentMode = UIViewContentModeScaleToFill;
//廣告點選開啟連結
imageAdconfiguration.openURLString = @"http://www.returnoc.com";
//廣告顯示完成動畫
imageAdconfiguration.showFinishAnimate =ShowFinishAnimateFadein;
//跳過按鈕型別
imageAdconfiguration.skipButtonType = SkipTypeTimeText;
//後臺返回時,是否顯示廣告
imageAdconfiguration.showEnterForeground = NO;
//顯示圖片開屏廣告
[XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];
複製程式碼
-2.新增視訊開屏廣告⬇️
--2.1 使用預設配置快速初始化
//1.使用預設配置初始化
XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration defaultConfiguration];
//廣告視訊URLString/或本地視訊名(請帶上字尾)
videoAdconfiguration.videoNameOrURLString = @"video0.mp4";
//廣告點選開啟連結
videoAdconfiguration.openURLString = @"http://www.returnoc.com";
//顯示視訊開屏廣告
[XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];
複製程式碼
--2.2 自定義配置初始化
//2.自定義配置
XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration new];
//廣告停留時間
videoAdconfiguration.duration = 5;
//廣告frame
videoAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);
//廣告視訊URLString/或本地視訊名(請帶上字尾)
videoAdconfiguration.videoNameOrURLString = @"video1.mp4";
//視訊填充模式
videoAdconfiguration.scalingMode = MPMovieScalingModeAspectFill;
//廣告點選開啟連結
videoAdconfiguration.openURLString = @"http://www.returnoc.com";
//廣告顯示完成動畫
videoAdconfiguration.showFinishAnimate =ShowFinishAnimateFadein;
//跳過按鈕型別
videoAdconfiguration.skipButtonType = SkipTypeTimeText;
//後臺返回時,是否顯示廣告
videoAdconfiguration.showEnterForeground = NO;
//顯示視訊開屏廣告
[XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];
複製程式碼
注意:
若你的廣告圖片/視訊URL來源於資料請求,請在請求資料前設定等待時間,在資料請求成功回撥裡,配置廣告,如下:
//1.因為資料請求是非同步的,請在資料請求前,呼叫下面方法配置資料等待時間.
//2.設為3即表示,啟動頁將停留3s等待伺服器返回廣告資料,3s內等到廣告資料,將正常顯示廣告,否則將自動進入window的RootVC
//設定資料等待時間
[XHLaunchAd setWaitDataDuration:3];
//廣告資料請求
[Network getLaunchAdImageDataSuccess:^(NSDictionary * response) {
//在此處利用伺服器返回的廣告資料,按上面示例新增開屏廣告程式碼
XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration ...
//配置相關引數....
//顯示開屏廣告
[XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];
} failure:^(NSError *error) {
}];
複製程式碼
-3.點選事件
/**
* 廣告點選事件 回撥
*/
- (void)xhLaunchAd:(XHLaunchAd *)launchAd clickAndOpenURLString:(NSString *)openURLString;
{
if(openURLString)
{
//跳轉到廣告詳情頁面
WebViewController *VC = [[WebViewController alloc] init];
VC.URLString = openURLString;
[self.window.rootViewController presentViewController:VC animated:YES completion:nil];
}
}
複製程式碼
-4.自定義跳過按鈕
//1.XHLaunchImageAdConfiguration 和XHLaunchVideoAdConfiguration 均有一個configuration.customSkipView 屬性
//2.自定義一個skipView 賦值給configuration.customSkipView屬性 便可替換預設跳過按鈕 如下:
configuration.customSkipView = [self customSkipView];
-(UIView *)customSkipView
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.backgroundColor =[ UIColor clearColor];
button.layer.cornerRadius = 3.0;
button.layer.borderWidth = 1.0;
button.layer.borderColor = [UIColor whiteColor].CGColor;
[button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
button.titleLabel.font = [UIFont systemFontOfSize:13];
button.frame = CGRectMake(15,[UIScreen mainScreen].bounds.size.height-55, 85, 40);
[button addTarget:self action:@selector(skipAction) forControlEvents:UIControlEventTouchUpInside];
return button;
}
-(void)skipAction
{
[XHLaunchAd skipAction];
}
/**
* 代理方法-倒數計時回撥
*
* @param launchAd XHLaunchAd
* @param duration 倒數計時時間
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd customSkipView:(UIView *)customSkipView duration:(NSInteger)duration
{
UIButton *button = (UIButton *)customSkipView;//此處轉換為你之前的型別
//設定自定義跳過按鈕倒數計時
[button setTitle:[NSString stringWithFormat:@"自定義%lds",duration] forState:UIControlStateNormal];
}
複製程式碼
-5.預快取介面(如果你需要提前下載並快取廣告圖片或視訊 請呼叫下面方法)
/**
* 批量下載並快取image(非同步)
*
* @param urlArray image URL Array
*/
+(void)downLoadImageAndCacheWithURLArray:(NSArray <NSURL *> * )urlArray;
/**
* 批量下載並快取視訊(非同步)
*
* @param urlArray 視訊URL Array
*/
+(void)downLoadVideoAndCacheWithURLArray:(NSArray <NSURL *> * )urlArray;
複製程式碼
-6.其他代理方法
/**
* 圖片下載完成/或本地圖片讀取完成 回撥
*
* @param launchAd XHLaunchAd
* @param image image
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd imageDownLoadFinish:(UIImage *)image
{
NSLog(@"圖片下載完成/或本地圖片讀取完成回撥");
}
/**
* 視訊下載完成回撥
*
* @param launchAd XHLaunchAd
* @param pathURL 視訊儲存在本地的path
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd videoDownLoadFinish:(NSURL *)pathURL
{
NSLog(@"video下載/載入完成/儲存path = %@",pathURL.absoluteString);
}
/**
* 視訊下載進度回撥
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd videoDownLoadProgress:(float)progress total:(unsigned long long)total current:(unsigned long long)current
{
NSLog(@"總大小=%lld,已下載大小=%lld,下載進度=%f",total,current,progress);
}
/**
* 廣告顯示完成
*/
-(void)xhLaunchShowFinish:(XHLaunchAd *)launchAd
{
NSLog(@"廣告顯示完成");
}
/**
如果你想用SDWebImage等框架載入網路廣告圖片,請實現此代理
@param launchAd XHLaunchAd
@param launchAdImageView launchAdImageView
@param url 圖片url
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd launchAdImageView:(UIImageView *)launchAdImageView URL:(NSURL *)url
{
[launchAdImageView sd_setImageWithURL:url];
}
複製程式碼
-7.其他操作
/**
* 清除XHLaunch本地快取
*/
+(void)clearDiskCache;
/**
* 獲取XHLaunch本地快取大小(M)
*/
+(float)diskCacheSize;
/**
* 快取路徑
*/
+(NSString *)xhLaunchAdCachePath;
複製程式碼
五.小結:
XHLaunchAd 3.0 擁有更靈活的呼叫方式和更優雅的介面,後期我還會持續維護並更新他,希望能給更多開發者帶來便利!