有没有办法完全阻止 cocos2d 中的触摸(假设文件或某些东西正在加载,我不希望用户能够按下任何东西)?
问问题
94 次
2 回答
2
您需要手动删除菜单和图层的触摸。
//Cocos2d 2.0
menu.touchEnabled = NO;
layer.touchEnabled = NO;
//Cocos2d 1.0
menu.isTouchEnabled = NO;
于 2013-04-16T15:36:51.333 回答
1
忽略所有交互:
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
忽略使用:
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
于 2013-04-16T15:41:13.873 回答