6

我正在尝试将 AdMob 广告添加到表格视图中。

我希望它出现在每 10 个单元格中。(例如,如果你有的话,就像它在 Reddit 应用程序的免费版本中的样子)。

我尝试按照 AdMob 文档进行操作,但没有任何运气,而且我确信我缺少一些东西。

任何人都可以用一种简单的方法来做这件事吗?谢谢!

4

1 回答 1

15

我使用的代码基本上是这样的:

int row = [indexpath row];

if (0 == (row % 10)) {  // or 9 == if you don't want the first cell to be an ad!
    static NSString *MyIdentifier = @"AdCell";
    cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
    }
    [cell.contentView addSubview:[AdMobView requestAdWithDelegate:self]];
} else {
     // make your normal cells
}
于 2009-10-18T01:47:33.963 回答