Error in demo version of Balloons from quick blog

I am completely new to Mac development and Swift language. I'm trying to run the Balloons demo from Swift Blog ( Here !) In a playground, but on the line:

let scene = SKScene(fileNamed: "GameScene")

      

I am getting the error:

Execution was interrupted, reason: SIGABRT

      

The console shows this:

2014-08-11 22:23:40.647 Balloons[484:303] +[SKScene nodeWithFileNamed:]: unrecognized selector sent to class 0x103d999d8

      

Since I'm new to Swift I have no idea what's going on. I have not made any changes to the source code.

Can anyone show me the light here? Thank.

+3


source to share


1 answer


Be sure to follow the requirements that are published on the blog:

This playground takes advantage of the new features of SpriteKit and requires the latest beta versions of Xcode 6 and OS X Yosemite .



The Balloons playground will not work on OS X Mavericks even if you are using the latest beta of Xcode.

+5


source







All Articles