这个问题已经有了答案:
Is it possible to add UIView (Admob) in uitableviewcontroller or in uicollectionviewcontroller
2个答案
我使用的是tableview,我希望在tableview前面显示一个admob横幅,并粘贴到屏幕底部(即使用户向下滚动)。

最佳答案

必须添加为工具栏。在viewdidload中添加此代码

self.navigationController!.toolbarHidden = false
banner = GADBannerView(adSize: kGADAdSizeBanner)
banner.adUnitID = "ca-app-pub-YOurID"
banner.rootViewController = self
var request: GADRequest = GADRequest.request()
request.testDevices = [""]
banner.loadRequest(request)
self.navigationController.toolbar.addSubview(banner)

关于swift - 如何将Admob横幅粘贴到屏幕底部(快速移动),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37314204/

10-12 14:11