Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a spreadsheet-like control for Cocoa

I'm looking for a grid view / table view / spreadsheet-type control for Cocoa and can't seem to find anything that's in any reasonable state.

I've tried using NSTableView but it's not really meant to be a single cell control.

NSCollectionView doesn't seem to be right either.

Any ideas?

like image 558
pizzafilms Avatar asked Oct 31 '22 07:10

pizzafilms


2 Answers

While Matt Ball's spreadsheet view (https://github.com/mattball/mbtablegrid/, mentioned above) is several years old, it does still compile on El Capitan. It must be easier as a starting point than working from scratch. There are several forks of the repository, most notable this one that does seem to be actively developed:

https://github.com/pixelspark/mbtablegrid

It seems like it would be better for those interested to pool contributions than create something new!

like image 117
Demitri Avatar answered Nov 15 '22 06:11

Demitri


We now have NSGridView, which is most likely what any future person reading this will want to use.

like image 45
Lucas Derraugh Avatar answered Nov 15 '22 07:11

Lucas Derraugh