我创建了Container,将onPress函数附加到它上面,然后将它作为Child添加到舞台上。
然后清除舞台(所以那里没有这样的孩子),更新它。
但onPress仍然有效。
答案 0 :(得分:1)
你做了什么清除舞台?
stage.removeAllChildren()
通过检查确保您的舞台没有孩子:
console.log(stage.getNumChildren());
如果你想删除onPress监听器,我只需要:
container.onPress=null;
这可能不是禁用它的最好方法,但它对我有用。