//clear the old radio buttons in the question scroll panel.
for each (var dis:DisplayObject in _radioButtonArr){
_questionScrollPanel.removeChild(dis);
}
_radioButtonArr里面存储所有要删除的DisplayObject.。不知道还有什么别的好方法,希望大家指教。
本文介绍了一种从_questionScrollPanel中移除所有RadioButton实例的方法。通过遍历存储在_radioButtonArr数组中的DisplayObject,并逐个调用removeChild方法实现清理。
//clear the old radio buttons in the question scroll panel.
for each (var dis:DisplayObject in _radioButtonArr){
_questionScrollPanel.removeChild(dis);
}
_radioButtonArr里面存储所有要删除的DisplayObject.。不知道还有什么别的好方法,希望大家指教。

被折叠的 条评论
为什么被折叠?