Search code examples
iosuitableviewios4

UITableView multiple cells


I make Iphone application and I want make my table view to look like home screen. I mean to make grid 4x4. I want to can touch either button from row. How can I do that?


Solution

  • You can't have multiple columns in a uitableview, one way to accomplish what you want is to use a scrollview and place each view in it with the appropriate frames in order to make it look as you wish, another way might be to add the views as you wnt them to the cells however I think the first option gives you more flexibility

    Hope this helps

    Daniel