0

My boss wants me to do something similar to this for iPad :

http://imgur.com/5ThsN

So far I've only found a few answers that involves two buttons inside a cell but it isn't working so well with all the data and the thumbnail I have to show on the side plus all content formatting to do since the labels arent inside the button.

Could anyone tell me if this is possible? And give me some basic help, maybe a tutorial, guide or some example similar to what I'm trying to do.

jscs
  • 63,694
  • 13
  • 151
  • 195
sherkal
  • 57
  • 2
  • 8
  • 2
    do both columns scroll aligned? if not, you could use 2 tableviews.. if yes, I would create a uiview subclass of the cells height and half the width, and let the subclass handle clicks and events. in the cellforrow... method, for each row insert 2 subviews, one at x=0 and the other at x = tableviewwidth/2 it doesn't need to be a full button view, it could be any uiview... – Sergio Campamá Nov 28 '11 at 16:51
  • I wrote this answer a while ago which might help here : http://stackoverflow.com/questions/7710795/how-to-create-uitableview-like-grid-in-landscape-mode/7714483#7714483. The bottom line is to choose how you will customize, either subclass UITableviewCell or like I explain it in the answer just use the contentView property as a container for your own views. If you're completely new to the topic you should read the apple table view guide to get the overall idea. – gregory Nov 28 '11 at 17:17

0 Answers0