如何在 iPhone 上添加全屏 iAd?
当用户单击按钮时,我希望在用户继续之前显示全屏 iAd。
我可以创建弹出视图,但如何用 iAd 填充整个视图? (例如,就像在wordfeud中所做的那样)
When a user clicks a button, I want a full screen iAd to appear, before the user can continue.
I can create the popup view, but how do I fill the whole view with an iAd? (e.g. like its done in wordfeud)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ADInterstitialAd(或全屏 iAd)仅适用于 iPad。您无法在 iPhone 上使用它。
来自 iAd 编程指南:
请查看该指南,了解如何在 iPad 上实现全屏 iAd。
ADInterstitialAd (or full screen iAd) is only available for the iPad. You can't use it on the iPhone.
From iAd Programming Guide:
Have a look at that guide to see how to implement full-screen iAds on the iPad.
使用 ADInterstitialAd 类。您可以使用
-presentFromViewController:
从另一个视图控制器(例如您的主游戏板)呈现它,或者使用-presentInView:
在现有视图中呈现它。Use the ADInterstitialAd class. You can present it from another view controller (e.g. your main game board’s) with
-presentFromViewController:
, or within an existing view with-presentInView:
.