1

Is there any grid-like control in iPad SDK?

mackworth
  • 5,765
  • 2
  • 26
  • 49
adrin
  • 3,678
  • 7
  • 39
  • 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
  • 24,726
  • 8
  • 66
  • 76
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
  • 66,765
  • 14
  • 157
  • 225
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,789
  • 3
  • 54
  • 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