如何在ios中检测到一些admob横幅广告

时间:2014-09-11 07:18:38

标签: ios admob

我是iOS游戏开发的新手。我正在开发一个儿童应用程序和我正在整合admob广告的应用程序。我必须在用户点击广告时检测触摸事件。因为当用户点击该广告用户首先显示家长控制。

1 个答案:

答案 0 :(得分:4)

您使用的是哪种SDK?假设6.11.1(最新),通常你应该将你的类实现为GADBannerViewDelegate或GADInterstitialDelegate的委托(reffer to Google Docs):

YourClass.h:

@interface YourClass : SuperClass <GADBannerViewDelegate, GADInterstitialDelegate> {
}

YourClass.m:

// onAdOpened
- (void)adViewWillPresentScreen:(GADBannerView *)adView {
    <your code here>
}

// onAdLeftApplication
- (void)adViewWillLeaveApplication:(GADBannerView *)adView {
    <your code here>
}