Hallo,
I want delete all elements of my container when refreshing, so in my method I have the following:
container.destroyAllChildren();
container.destroy();
container = null;
But sometimes I get an exception about the destroy.
Can I use the resetView instead of detroy methods?
myView.resetView();
container=null;
Thanks...
Andrea