Tabular display of images
I am very new in Iphone development. I have a requirement to display images in a tabular form [row column wise].
---------------------------------------
| Img1 img2 img3 img4 |
| Img6 img7 img8 img9 |
---------------------------------------
Will you please inform me the best way to accomplish this.
Thanks in adv开发者_C百科ance. Suhas.
You can go for multi column grid table view layout , where you can define each and every row and column.
you can check this tutorial for Drawing a Grid in a iPhone UITableView – Tabular Cell Data
http://usxue.is-programmer.com/posts/14176.html http://www.iphonedevx.com/?p=153
You should look into using a UIScrollView for this. Set the contentSize accordingly to your needs.
精彩评论