是否有任何限制,无法在分享表中显示Google Admob的横幅视图?我有一个应用程序,它在共享表中提供了额外的数据,我也希望在那里显示广告。在我的主应用程序中,广告正常运行 - 但在分享表中,我在初始化广告时没有收到任何错误消息或其他任何内容。
问候, 千斤顶
更新:我正在使用cocoapod Firebase / Admob。这个分配给主应用程序和共享表。由于我在几个视图控制器上有广告,我创建了一个函数,它通过应用程序组连接到两个部分。在ViewDidLoad中,我初始化google admob
GADMobileAds.configure(withApplicationID: "filledwiththecorrectcode")
然后我运行此函数提供视图和约束:
func loadAdd(ViewController: GADBannerView, HightConstrain: NSLayoutConstraint, MainApp: Bool){
ViewController.adSize = kGADAdSizeSmartBannerPortrait
// TEST CODE
ViewController.adUnitID = "ca-app-pub-3940256099942544/2934735716"
ViewController.rootViewController = self
HightConstrain.constant = 50
let request: GADRequest = GADRequest()
request.testDevices = [kGADSimulatorID]
ViewController.load(request)
}
}
这在主应用程序中工作正常。在共享表中,我运行相同的功能 - 它也在调试器中运行,但没有任何反应。啊,