在我的一个SKScenes中,我正在收听NSNotification kApplicationWillBecomeActive。 每次应用程序变为活动状态时,它都会将场景的暂停状态设置为false!任何想法?
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationAppBecameActive:) name:kNotificationAppBecameActive object:nil];
我正在寻找能够帮助我区分案例的解决方案。
由于
答案 0 :(得分:0)
尝试覆盖setPause并根据需要进行设置
-(void) setPaused:(BOOL)paused
{
[super setPaused:self.isGamePaused];
}