我正在尝试实施插页式广告,我遇到的问题是它没有显示为全屏广告,而是填充当前框架并离开标签栏。
func interstitialAdDidLoad(interstitialAd: ADInterstitialAd!) {
interAdview = UIView()
interAdview.frame = self.view.bounds
view.addSubview(interAdview)
interAd.presentInView(interAdview)
UIViewController.prepareInterstitialAds()
interAdview.addSubview(close button)
假设是导致问题的self.view.bounds,但不确定如何设置超视图的边界而忽略当前视图。
答案 0 :(得分:0)
尝试从根视图控制器中显示插页式广告,如下所示:
let window = UIApplication.sharedApplication().delegate?.window!
window?.rootViewController?.requestInterstitialAdPresentation()