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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 noUITableView, andNSTableViewworks very differently.Cocoa With Love has some useful info on making something similar on the Mac.