如何AdMob广告添加到一个UITableView(How to add AdMob ads to

2019-08-19 20:26发布

我想AdMob广告添加到表格视图。

我想它在每10个单元格中显示。 (例如,喜欢它是如何在免费版本的应用程序书签交易,如果你有的话)。

我试图按照AdMob的文档,但我没有任何运气,我相信有我丢失的东西。

任何人都可以照一些轻上一个简单的方法来做到这一点? 谢谢!

Answer 1:

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

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
}


文章来源: How to add AdMob ads to a UITableView