如何跟踪Google Adsense以编程方式在iOS / Swift中单击

时间:2017-08-19 09:14:47

标签: ios swift admob adsense

有没有办法跟踪谷歌广告在iOS / Swift中以编程方式点击。我没有找到任何解决方案来跟踪使用Google Ad Sense点击任何Google广告的点击次数。

1 个答案:

答案 0 :(得分:1)

阅读documentation - 有委托功能。我想你可以这样做:

我建议你创建类范围变量clickCount = 0,并在委托函数中添加一个。

/// Tells the delegate that a full screen view will be presented in response
/// to the user clicking on an ad.
func adViewWillPresentScreen(_ bannerView: GADBannerView) {
  clickCount += 1
  print(clickCount)
}