ただし、UITableViewのセル上にAdMobを表示する場合は、広告バナーを addSubviewするときは、self.view ではなく cell.contentView に addSubview しなければならない。
bannerView_ = [[GADBannerView alloc]
initWithFrame:CGRectMake(0.0,
0.0,
GAD_SIZE_320x50.width,
GAD_SIZE_320x50.height)];
bannerView_.adUnitID = @"Your-Publisher-ID";
bannerView_.rootViewController = self;
[cell.contentView addSubview:bannerView_];
[bannerView_ loadRequest:[GADRequest request]];
[cell.contentView addSubview:bannerView_]ではなく、
[self.view addSubview:bannerView_];と記述して表示される場合もあるが、
UITableViewのセル上に表示するので、cell.contentView への addSubview とするべき。