如何在 Flex 中处置类实例?
我有一个菜单,每次单击一个项目时,它都会打开一个屏幕(一个新的弹性组件),当我单击回到屏幕时,我想处理该特定实例,有没有一种简单的方法可以做到这一点?
I have a menu, each time you click on an item it opens up a screen (a new flex component), when I click back on to the screen I want to dispose of that particular instance, is there an easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UIComponent.removeChild(子) 是一种方法。您也可以使用视图状态来执行此操作。
UIComponent.removeChild(child) is one way. You can also do this with View States.
最好的方法是将所有动态实例存储在一个数组中,例如dynamicHandles:
然后添加为子项:
最后,每当您需要删除它们时,首先将它们作为子项删除,然后像这样清理数组:
The best way to do it is to store all your dynamic instances in an Array, like dynamicHandles:
And then add as children:
Finally, whenever you need to remove them, first remove them as child and then clean up the array like so: