如何在表视图上添加bannerView

时间:2016-07-27 21:20:48

标签: ios

我想添加admob和

我有错误 /Main.storyboard:错误:非法配置:从newsListTvc到GADBannerView的bannerView出口无效。奥特莱斯无法连接到重复内容。

为什么?

2 个答案:

答案 0 :(得分:1)

因为单元格是可重用的,所以出现错误:

  

奥特莱斯无法连接到重复内容。

尝试以下选项。

选项1。

  1. 实施自定义单元格(名称:xxx);
  2. 在Identity Inspector中将自定义类更改为xxx,在Attributes Inspector中将标识符更改为xxx;
  3. 将插座添加到xxx;
  4. 在tableView中使用xxx。
  5. OPT2。

    以委托方式编程方式添加bannerView:

    - tableView:viewForHeaderInSection:
    

    OPT3。

    将tableView的内容类型从Dynamic Prototypes(默认)更改为Attributes Inspector中的Static Cells,将删除错误。

答案 1 :(得分:0)

不要将广告视图作为单元格添加到tableview,而是作为标题视图添加