I updated Xcode to version 6. Since then I haven't been able to use the code that used to write in Xcode 5 using Objective C.
There are some new files: GameScene.h and GameScene.m and GameScene.sks insteadf of MyScene.h and MyScene.m
They load with:
-(void)didMoveToView:(SKView *)view {
/* Setup your scene here */
}
instead of the usual
-(id) initWithSize: (CGSize)size {
}
I cannot use the code that i used to write in the initWithSize in the didMoveToView, it doesn't work as it should. And if i create a initWithSize myself, it doesn't work either.
Please help! :)