有没有办法完全阻止cocos2d中的触摸(假设,文件或其他东西正在加载,我不希望用户能够按任何东西)?
答案 0 :(得分:2)
手动您需要删除菜单和图层的触摸。
// Cocos2d 2.0
menu.touchEnabled = NO;
layer.touchEnabled = NO;
// Cocos2d 1.0
menu.isTouchEnabled = NO;
答案 1 :(得分:1)
忽略所有互动:
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
使用unignore:
[[UIApplication sharedApplication] endIgnoringInteractionEvents];