tags:

views:

35

answers:

1

Hi.

I have to migrate a iPhone application to Mac OSx. Anybody knows where I can find a equivalence between the iPhone class (lets say UITableViewController) and the Mac equivalent?

Tankes

+2  A: 

Same language, different SDK. All the UI classes are different, though Foundation is mostly the same.

There is no equivalent to UITableViewController, for instance, as there is no UITableView, and NSTableView works very differently.

Cocoa With Love has some useful info on making something similar on the Mac.

Andrew Pouliot
Tankes for the answer and the link.
GojaN