我想在指定的时间间隔内在iOS应用中显示插页式广告。 另外,我不想打扰用户交互。当用户尝试从scree /其他操作导航时,我想展示此非页内广告。
但是,我没有在iOS中看到任何方法/调用会在需要时加载InterstitialAd。
此外,iOS 7中也不推荐使用[interstitialAdObj presentFromViewController]
。
我的问题是,只有在需要时才能展示/展示插页式广告的另一种方法是什么?
答案 0 :(得分:0)
这个在iOS 7中适合我。在ADInterstitialAdDelegate中找到
-(BOOL)presentInView:(UIView *)containerView;
另外
-(BOOL)requestInterstitialAdPresentation NS_AVAILABLE_IOS(7_0);
我希望能帮助你。