有没有办法跟踪谷歌广告在iOS / Swift中以编程方式点击。我没有找到任何解决方案来跟踪使用Google Ad Sense点击任何Google广告的点击次数。
答案 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)
}