无法指定“ViewController”类型的值来键入“GADInterstitialDelegate?”

时间:2016-02-05 02:55:01

标签: swift admob

我已经查看了答案,但我似乎找不到 GADInterstitialDelegate

我正在关注教程:https://developers.google.com/admob/ios/interstitial但我得到的只是这个错误:

  

无法指定'ViewController'类型的值来输入'GADInterstitialDelegate?'

我删除了该项目并重新开始。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:4)

取自:Swift AdMob Tutorial

的原因

  

这意味着您的ViewController不符合GADInterstitialDelegate类型

解决方案

从以下位置更改ViewController类声明:

class ViewController: UIViewController {

对此:

class ViewController: UIViewController, GADInterstitialDelegate