NSTimer因Game Center而停止

时间:2012-03-28 07:22:42

标签: iphone objective-c ios ios5 xcode4.2

我面临NStimer的问题,我正在使用NSTimer旋转我的加载图像,并且我已经在我的项目中实现了Game Center。问题是,当我的游戏加载时,如果屏幕上出现GC弹出窗口,我的游戏卡在加载状态,NSTimer永远不会失效

1 个答案:

答案 0 :(得分:0)

您是否尝试使用块而不是NSTimer?

这样的事情:

[UIView animateWithDuration:1.0
                      delay:0.0
                    options:UIViewAnimationOptionCurveEaseIn
                 animations:^{
                     CGAffineTransform  rotation = CGAffineTransformMakeRotation(-M_PI);
                     self.transform = rotation;
} completion:^(BOOL finished){}];