有没有方法在cocos2D中完全禁止触屏动作?
比如在下载文件时用户不能进行任何按钮操作。
谢谢
收起
忽略所有用户交互:
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
恢复:
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
报告相同问题?