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
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
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.