3

In my project, inside a view I want to create a grid (gridview) as excel grid. What tools can I use?

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
cyclingIsBetter
  • 17,447
  • 50
  • 156
  • 241
  • Be more specific. It's not clear what is being asked here. "grid (gridview) as excel grid" -- what does that mean? – occulus Apr 08 '11 at 15:28
  • simply grid...I want create a grid – cyclingIsBetter Apr 08 '11 at 15:39
  • 1
    possible duplicate of [Grid view in iPhone SDK](http://stackoverflow.com/questions/2265293/grid-view-in-iphone-sdk) – Brad Larson Apr 08 '11 at 16:14
  • 1
    See also [Data grids for iOS](http://stackoverflow.com/questions/5030335/data-grids-for-ios), [How can I create an interface similar to an Excel spreadsheet on the iPhone?](http://stackoverflow.com/questions/661148/how-can-i-create-an-interface-similar-to-an-excel-spreadsheet-on-the-iphone), and [How do you display a spreadsheet-like table in an iPhone view?](http://stackoverflow.com/questions/3714349/how-do-you-display-a-spreadsheet-like-table-in-an-iphone-view). – Brad Larson Apr 08 '11 at 16:16

2 Answers2

2

NSMatrix and NSCollectionView are not available on iOS. Have a look at AQGridView: https://github.com/AlanQuatermain/AQGridView

(If you're attempting to build something as complex as a spreadsheet, though, you might eventually find that you need to build something custom.)

Ben Zotto
  • 70,108
  • 23
  • 141
  • 204
0

Sounds like you want to take a look at NSMatrix or possibly NSCollectionView depending on what you want to store in your table cells. NSMatrix would be the direct analog to the Excel grid.

Setanta
  • 56
  • 4
  • Can I use NSMatrix for Ios? , my project is for Ipad... – cyclingIsBetter Apr 08 '11 at 15:55
  • @blackguardian:any updates regarding your projects if so plz lemme know.right now i need to create a spreadsheet with some static data how to get the things done regarding the ui also am unable to progress. – ravoorinandan Apr 27 '11 at 09:29