我已经查看了答案,但我似乎找不到 GADInterstitialDelegate
我正在关注教程:https://developers.google.com/admob/ios/interstitial但我得到的只是这个错误:
无法指定'ViewController'类型的值来输入'GADInterstitialDelegate?'
我删除了该项目并重新开始。有人可以帮忙吗?
答案 0 :(得分:4)
这意味着您的ViewController不符合GADInterstitialDelegate类型
从以下位置更改ViewController类声明:
class ViewController: UIViewController {
对此:
class ViewController: UIViewController, GADInterstitialDelegate