Commit 70ac3487 authored by Mazy's avatar Mazy

xx

parents 41bfb31f 3c83a47e
......@@ -142,7 +142,7 @@
*/
- (void)splashAdDidClick:(BUSplashAdView *)splashAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
// NSString * clkTracking = self.currentData.clk_tracking[0];
......@@ -186,7 +186,8 @@
This method is called when spalashAd skip button is clicked.
*/
- (void)splashAdDidClickSkip:(BUSplashAdView *)splashAd;{
// [self videoAdDidClick:self.currentData];
}
/**
......@@ -284,14 +285,15 @@
This method is called when video ad is clicked. 点击
*/
- (void)nativeExpressRewardedVideoAdDidClick:(BUNativeExpressRewardedVideoAd *)rewardedVideoAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
/**
This method is called when the user clicked skip button.
*/
- (void)nativeExpressRewardedVideoAdDidClickSkip:(BUNativeExpressRewardedVideoAd *)rewardedVideoAd;{
// [[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
/**
......@@ -385,7 +387,7 @@
* Sent when an ad view is clicked
*/
- (void)nativeExpressAdViewDidClick:(BUNativeExpressAdView *)nativeExpressAdView;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......
......@@ -132,7 +132,7 @@
* 开屏广告点击回调
*/
- (void)splashAdClicked:(GDTSplashAd *)splashAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......@@ -237,7 +237,7 @@
@param rewardedVideoAd GDTRewardVideoAd 实例
*/
- (void)gdt_rewardVideoAdDidClicked:(GDTRewardVideoAd *)rewardedVideoAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......@@ -346,7 +346,7 @@
* 原生模板广告点击回调
*/
- (void)nativeExpressAdViewClicked:(GDTNativeExpressAdView *)nativeExpressAdView;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......
......@@ -118,7 +118,7 @@
开屏广告点击回调
*/
- (void)vl_splashAdDidClick:(VLNSplashAd *)splashAd{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......@@ -172,7 +172,7 @@
视频广告信息点击回调
*/
- (void)vl_rewardVideoAdDidClicked:(VLNRewardedVideoAd *)rewardedVideoAd{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......@@ -243,7 +243,7 @@
广告点击回调
*/
- (void)vl_nativeAdDidClick:(VLNNativeAd *)nativeAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
/**
......
......@@ -106,7 +106,7 @@
* 开屏广告点击回调
*/
- (void)onSplashAdClicked:(WindSplashAd *)splashAd;{
[self videoAdDidClick:self.currentData];
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......@@ -155,6 +155,8 @@
*/
- (void)onVideoAdClosedWithInfo:(WindRewardInfo *)info placementId:(NSString *)placementId;{
#warning z这里可以做个bool 用于 关闭确定是否有奖励
self.showSuccessCallbackBlock(self.currentData, YES);
}
/**
......@@ -194,8 +196,7 @@
@param placementId 广告位Id
*/
- (void)onVideoAdClicked:(NSString *)placementId;{
[self videoAdDidClick:self.currentData];
self.showSuccessCallbackBlock(self.currentData, YES);
[[IOSADManager shareADManager] videoAdDidClick:self.currentData];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment