Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ListView in Objective-C Cocoa

I used for some time the .net framework, especially Wpf. Now I need to develop an application for Os X using cocoa. In wpf I have the ListView object where each element can be what object I want. I need to use an alternative in cocoa that allows me to scroll I list of personal "user control".

Is there such alternative?

like image 782
Nick Avatar asked Jan 14 '23 09:01

Nick


1 Answers

The alternative of List-view in OS X is TableView, you can refer to the Apple documentation for the reference. http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/TableView

like image 186
Salman Khakwani Avatar answered Jan 21 '23 23:01

Salman Khakwani