所以我按照本教程展示了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。
您可能需要更多信息,但我不确定是什么,就像我可以包含它一样。
答案 0 :(得分:0)
scene.viewController = self
不 scene.ViewController = self
viewController是GameScene中具有类型GameViewController
的成员变量。(根据您的教程)