-3

How can I create a UITablveVIew like this?

enter image description here

Jean-François Corbett
  • 37,420
  • 30
  • 139
  • 188
Mr Q
  • 3
  • 6
  • here are some good link to help you.. http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewCell_Class/Reference/Reference.html http://stackoverflow.com/questions/9014105/where-is-a-good-tutorial-for-making-a-custom-uitableviewcell http://stackoverflow.com/questions/2477277/rotate-a-custom-uitableviewcell and this to rotate as table (i think u need that too) http://www.iphonedeveloperdiary.com/2010/05/supporting-iphone-landscapeportrait-orientations-uitableviewcells/ – rptwsthi Jan 16 '13 at 07:23

3 Answers3

0
  1. You need to create a custom UITableViewCell
  2. Load all the controls which you need to use. For eg in this case UIButton, UILable etc etc
  3. In your cellForRowAtIndexPath you need to put condition depending upon which row you are.
  4. Set alpha to 1 for the controls which you need. And put alpha to 0 for the controls which you don't need to display. And, also you can change their attributes for e.g. changing the font of UILable or changing the image of UIButton

Note : To implement this kind of UITableView it is important for you know what will be the format of your cell.

Rushi
  • 4,553
  • 4
  • 33
  • 46
0

You subclass UITableViewCell. I've done it myself, and here are some great links on the topic:

The best way to do custom, reusable UITableViewCells

Custom UITableViewCell with IB

The IB method is very straightforward.

Roy
  • 3,574
  • 2
  • 29
  • 39
0

Try to use Custom Cell for this design and use table View Editing Style to add new rows in table.

Check here for sample Projects

Table View Sample1 Table View Sample2

Hope this will helps u

Satish Azad
  • 2,302
  • 1
  • 16
  • 35