Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了 Container,将 onPress 函数附加到它,然后将它作为 Child 添加到舞台。
然后清除舞台(所以那里不再有这样的孩子),更新它。
但 onPress 仍在工作。
你做了什么清除舞台?
stage.removeAllChildren()
通过检查确保您的舞台没有子级:
console.log(stage.getNumChildren());
如果您想删除 onPress 侦听器,我只需执行以下操作:
container.onPress=null;
这可能不是禁用它的最佳方法,但它对我有用。