I want to create a Cocoa application with a list of entries very similar to the ToDo Things.app list ( see screencast ). The question is whether to use
- Tableview
- CollectionView or
- WebView
I think it can work with all of them, but which one is better suited for the following requirements?
- there is a list of entries -> 1 column and many rows
- drag and drop reordering
- select individual entries and use keys for actions like delete
- open entry: the line must expand to display more input fields.
- individual look: rounded corners, shadow, background gradient
Until now, my research has said that TableView has most of the functionality, but it’s more difficult to customize its appearance, CollectionView does not have drag and drop (right?), But it’s easy to design, and WebView will take a lot to not damage the user interface, and I can’t Bind your model directly to input fields.
What are the pros and cons to me and what do you recommend to use?
source
share