So I go back to my view controller from my skscene using the following ANSWER from a previous question I have asked. But now since ios8 I now get an error saying. Has anyone else dealt with this since the release of ios8 how did they fix it?
'NSInvalidArgumentException', reason: '-[TCAMyScene setDelegate:]: unrecognized selector sent to instance 0x79485190'
Now from this answer Delegate not found I have tried changing
theScene.delegate = self;
to..
[(TCAMyScene *)theScene setDelegate:self];
but I still get the same error.
This is the warning im getting..
The assignment statement should be
or
if you changed the
delegate
tomyDelegate
,