I know in iOS6 there is the new collection view which would allow me to create a sort of table view with multiple columns or effectively a grid view.
I am looking to achieve the same effect but on iOS5 and some guidance would be appreciated.
So I want to create a grid of "cells" 4 across so very much like how the photos work on iOS when you view an album.
My first thought is to use Monotouch.dialog and create a Element that takes in a uiview that contains the 4 uivew "cells"
or to just add the cells to a scrollview programtically calculating their position into 4x(max) grid
the grid will be built off a dynamic list of data so it could contain a large amount of cells so Im trying to pick the best preforming method. Would anyone have any suggestions?