Я уверен, что это простое исправление, но я не могу его найти.У меня есть табличное представление, которое в настоящее время работает очень хорошо, настроенное как:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
NSUInteger row = [indexPath row];
cell.textLabel.text = [creedsList objectAtIndex:row];
cell.imageView.image = [UIImage imageNamed:[creedsImages objectAtIndex:row]];
return cell;
Admob SDK говорит добавить эту строку:
[cell.contentView addSubview:[AdMobView requestAdWithDelegate:self]];
Но тогда он наполняет КАЖДУЮ ячейку рекламой,Есть мысли?
РЕДАКТИРОВАТЬ: я использую этот код для заполнения:
NSUInteger row = [indexPath row];
cell.textLabel.text = [creedsList objectAtIndex:row];