I have many subviews layout randomly in another supperView.
I want to put them all to an array with order base on their location from left to right, up to down:
ex:
view1 - view2 - view3
view4 - view5 - view6
array = {view1, view2, view3, view4, view5, view6}
How can I always get the right order(array indexes) when array = superView.subviews ?
Thanks for help!
