iPhone - UITableView 中的 iAds

标签 iphone objective-c uitableview iad

我打算将 iAd 放在我的应用程序中的 UITableView 上,但我不确定这是否是一个好的做法。我读过这篇文章Will my app get rejected if I place an iAd in a UITableView header view但不确定 Apple 文档(请参阅下面的摘录)来自哪里,如果您知道它在哪里,请告诉我。

Apple will reject your application if an iAd is within a table cell. iAds are required to be in a static position on the page, and not in any kind of scroll view (this includes table views). This is because iAds pay by impression as well as by click, so having an iAd in a table view cell will cause it to be reloaded whenever it scrolls off and on screen again, which could be many times. This would seem like "click-fraud" or similar behaviour. Apple will not allow this.

谢谢

最佳答案

我想链接的帖子是正确的。实现 iAds 的简单方法是进入 UIViewController - 这意味着您可以考虑将 UITableView 移动到 View Controller 中来完成此操作;如果您不确定,下面的链接描述了此过程。

我还想向您提供一些 iAd PDF 的链接,但由于我不是我的开发者帐户的团队负责人,而且我们尚未同意使用 iAd...我无法这样做。但如果您确实有访问权限,那么您应该可以轻松找到与广告相关的确切 TOS。

http://www.raywenderlich.com/1371/how-to-integrate-iad-into-your-iphone-app

关于iPhone - UITableView 中的 iAds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6255235/

相关文章:

iphone - 如何计算 UITextView 显示的字符数?

swift - 更新部分背景颜色而不刷新整个 UITableView

ios - 重用 UITableView 中的单元格

ios - 获取排序数组中的 IndexPath

iphone - 如何在iPhone中以编程方式插入和查看数据到sqlite数据库

iphone - 数据库驱动的 ios 应用程序 - 第一步

iphone - 当应用程序处于前台和后台时区分推送通知处理程序

ios - iPhone 应用程序在某些设备上启动时崩溃,但在其他设备上运行

objective-c - 为什么不需要取消引用 NSString 指针?

objective-c - 如何通过GCD在objective-c中实现可重入锁机制?