将ViewController和场景链接到展示广告(SpriteKit)

时间:2017-04-01 17:40:39

标签: ios swift sprite-kit admob

所以我按照本教程展示了banner ad http://insaneplatypusgames.com/2016/03/29/adding-admob-banners-to-spritekit-games/

它提供的代码非常简单。我希望在我的应用程序开头的主菜单中添加一个广告。

我到了最后一步,

// Linking view controller and scene to show ads
scene.ViewController = self

我收到错误:

  

MainMenuScene类型的值没有成员' ViewController' - 你是否   是什么意思inutViewController?我并不是指inputViewController。

您可能需要更多信息,但我不确定是什么,就像我可以包含它一样。

1 个答案:

答案 0 :(得分:0)

scene.viewController = self scene.ViewController = self

viewController是GameScene中具有类型GameViewController的成员变量。(根据您的教程)