好吧,这就是我使用的代码,但横幅广告似乎无法加载。测试模式已开启,但根本没有显示。
let completionBlock: () -> Void = {
//Custom method defined below
self.banner?.showAd()
self.bannerView?.showAd()
}
let failureBlock: (NSError!) -> Void = {error in
print("Gifting Chaos Session failed to start with error: \(error.localizedDescription)")
}
RevMobAds.startSession(withAppID: "myKEY", withSuccessHandler: completionBlock, andFailHandler: nil)
bannerView? = RevMobAds.session().bannerView()
let x = CGFloat(0)
let y = CGFloat(0)
let width = CGFloat(375)
let height = CGFloat(50)
self.bannerView?.frame = CGRect(x: x, y: y, width: width, height: height)
bannerView?.loadAd()
bannerView?.showAd()
banner?.releaseAd()
self.banner?.showAd()
答案 0 :(得分:0)
我相信你的代码有点令人困惑。您拨打showAd()
和releaseAd()
。你可以尝试在完成块中显示广告吗?另请尝试使用我们的示例应用程序并按照我们的文档here
您没有发送viewController中的代码,但您还必须在控制器的视图中添加横幅。