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