我正在尝试将AdMob广告添加到表格 View 中。
我希望它出现在每10个单元格中。 (例如,如果有的话,就像Reddit App的免费版本中的样子)。
我尝试遵循AdMob文档,但没有运气,而且我确定我缺少一些东西。
任何人都可以通过一种简单的方法来做到这一点吗?
谢谢!
最佳答案
我基本上是这样使用代码的:
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
}
关于iphone - 如何将AdMob广告添加到UITableView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1583583/