1

Is there any grid-like control in iPad SDK?

mackworth
  • 5,873
  • 2
  • 29
  • 49
adrin
  • 3,738
  • 8
  • 40
  • 60
  • 1
    possible duplicate of [Grid view in iPhone SDK ](http://stackoverflow.com/questions/2265293/grid-view-in-iphone-sdk) – Tim Sullivan Sep 18 '10 at 15:25

3 Answers3

6

I recommend AQGridView

catlan
  • 25,100
  • 8
  • 67
  • 78
0

As a commercial alternative, I would recommend giving the ShinobiControls a try. They have just launched ShinobiGrids. These grids are high performance and have some nice interactive touches, columns and row dragging for example.

As a full disclosure, I work for Scott Logic which is the parent company for ShinobiControls.

ColinE
  • 68,894
  • 15
  • 164
  • 232
0

Not in the UIKit, no. Depending on your needs, you could probably set up a UITableView to use UITableViewCells that have extra labels for additional "columns". If you need something more like spreadsheet, you'll need to write something custom.

Alex
  • 26,829
  • 3
  • 55
  • 74
  • Can I select just one column if I use this approach ? Or when I click on a column the entir row is selected ? – aneuryzm May 05 '11 at 11:20