In one of my SKScenes I'm listening to the NSNotification kApplicationWillBecomeActive. Every time the app becomes active it sets the pause status of the scene to false! any ideas?
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationAppBecameActive:) name:kNotificationAppBecameActive object:nil];
I'm looking for a solution that will help me distinguish between the cases.
Thanks