【发布时间】:2019-08-08 22:31:26
【问题描述】:
我计划将 AdMob 插页式广告添加到我的应用中。一切正常,但我想改变广告外观的动画。默认情况下,广告单元从上往下显示。我想更改动画以溶解或完全关闭它。有这样的机会吗?
我有什么:
-
GADInterstitial继承自NSObject的对象@interface GADInterstitial: NSObject
-
present方法:(void) presentFromRootViewController: (nonnull UIViewController *) 根视图控制器;
我的代码:
// Ad loading
let interstitial= GADInterstitial(adUnitID: MY_AD_UNIT_ID)
interstitial.load(GADRequest())
// Ad displaying
if interstitial.isReady {
interstitial.present(fromRootViewController: MY_VIEW_CONTROLLER)
}
【问题讨论】: