In my project, inside a view I want to create a grid (gridview) as excel grid. What tools can I use?
Asked
Active
Viewed 1.0k times
3
-
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
-
1possible 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
-
1See 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 Answers
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
-
-
@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