如果我将 iAd 放入 UITableView headerView 中,我的应用程序会被拒绝吗?

发布于 2024-09-19 22:51:55 字数 96 浏览 1 评论 0原文

我在 UITableView 的 headerView 中显示 iAd。当用户滚动时,iAd 消失,因为 headerView 不再可见。我不确定这是否会阻止我的应用程序被接受。

I am displaying iAd's in the headerView of a UITableView. When the user scrolls the iAd disappears because the headerView is no longer visible. I am not sure if this will prevent my app from being accepted.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生来就爱笑 2024-09-26 22:51:55

正如我在回答您上一个问题(以及作为重复项关闭的另一个问题)时所解释的那样: iAd 出现在模拟器中,但不在设备上

如果出现以下情况,Apple 将拒绝您的申请:
iAd 位于表格单元格内。网络广告
需要处于静态
页面上的位置,而不是任何位置
一种滚动视图(这包括
表视图)。 这是因为 iAds 需要付费
通过印象和点击,所以
在表格视图单元格中有一个 iAd
会导致它在任何时候重新加载
它滚动关闭并再次出现在屏幕上,
这可能是很多次。这会
看起来像“点击欺诈”或类似的
行为。苹果不会允许这样做。


我已经强调了文本的重要部分。

  • 除了点击之外,iAd 还按展示次数付费
  • 当滚动关闭/打开屏幕时,表格单元格会被卸载/重新加载。
  • 重新加载会引发新的请求。
  • 新的请求将产生新的印象(如果成功)。
  • 新的印象将产生收入。

除此之外,表格单元格中的 iAd 更有可能被意外点击,因为它们可以随表格移动 - 它们的位置不固定。

Apple iAd Network 合同的这一部分描述了欺诈行为:

不允许的人工增强
包括但不限于 (a)
鼓励用户点击
提供现金、奖品或的横幅
任何其他有价值的东西来交换
服务(统称为
“诱因”),或(b)申请
鼓励或是的设计
相当可能导致
意外或无意的点击率
由用户(“无意的
点击率”)。

我已经强调了适用于这种情况的 (b) 条。

我 99.999% 确信 Apple 会拒绝将 iAd 放置在表格视图单元格中的应用程序。

As I explained in an answer to your previous question (and another question that was closed as a duplicate): iAd appears in simulator but not on device

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.

I have emphasised the important part of the text.

  • iAds pay by impression in addition to click.
  • Table cells are unloaded/reloaded when scrolled off/on screen.
  • Reloading will cause a new request.
  • A new request will generate a new impression (if successful).
  • A new impression will generate revenue.

In addition to this, iAds in table cells are more likely to be accidentally clicked, because they can move with the table - their position is not fixed.

This section of the Apple iAd Network Contract describes fraudulent behaviour:

Disallowed artificial enhancements
include, but are not limited to, (a)
encouraging user Clickthroughs on
banners with offers of cash, prizes or
anything else of value in exchange for
services (collectively,
“Inducements”), or (b) application
design that encourages or is
reasonably likely to lead to
accidental or unintended Clickthroughs
by the user (“Unintended
Clickthroughs”).

I have emphasised clause (b) that would apply in this situation.

I am 99.999% certain Apple will reject an application that places iAds in table view cells.

樱花细雨 2024-09-26 22:51:55

只要它在 self.tableView.tableHeaderView 中而不是在节标题中就可以了。我有一个接受的应用程序可以做到这一点: http:// itunes.apple.com/us/app/core-location-info/id383670716?mt=8

As long as its in the self.tableView.tableHeaderView and not in a section header it will be fine. I have an accepted app that does it: http://itunes.apple.com/us/app/core-location-info/id383670716?mt=8

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文