You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pushing my SKView / SKTiledScene on a navigation controller from a vanilla UIKit menu view.
When I hit 'Back' on the navigation controller, I encounter a crash, but only on an iPhone 5:
2017-04-29 20:36:37.847 MyGame[32197:8936930] *** -[SKTiledScene release]: message sent to deallocated instance 0x7bf07ba0
It appears to be caused by the removeAllChildren() in the deinit of SKTiledScene.
Commenting it out address my problem, although at this time I'm not exactly sure why. It also doesn't appear to have a negative impact on my memory usage.
The text was updated successfully, but these errors were encountered:
I'm pushing my SKView / SKTiledScene on a navigation controller from a vanilla UIKit menu view.
When I hit 'Back' on the navigation controller, I encounter a crash, but only on an iPhone 5:
It appears to be caused by the
removeAllChildren()
in thedeinit
ofSKTiledScene
.Commenting it out address my problem, although at this time I'm not exactly sure why. It also doesn't appear to have a negative impact on my memory usage.
The text was updated successfully, but these errors were encountered: