在cocos2d论坛上(
http://www.cocos2d-iphone.org/forum
)CJ帮了我。
[dicector stopAnimation]
,但也有一些其他的好处。
我现在做这个之前
presentModalViewController
:
CCDirector *director = [CCDirector sharedDirector];
[director pause];
[director stopAnimation];
[director.openGLView setUserInteractionEnabled:NO];
当我收到回电时
mailComposeController
CCDirector *director = [CCDirector sharedDirector];
[director.openGLView setUserInteractionEnabled:YES];
[director startAnimation];
[director resume];
[myMail.view.superview removeFromSuperview];
希望这能帮助别人。