I am looking to create a general purpose routine that will operate over a view\'s children. Within the routine I need to be able to iterate over the child views. I don\'t
i would check also for
if (view.children[c] !== undefined) {..}
since i already got problems with android without verifieing.
this is the basic structure for removing child objects from a view
if (view.children) {
for (var c = view.children.length - 1; c >= 0; c--) {
view.remove(view.children[c]);
}
}