Regan
Regan

Reputation: 1497

Port an iPhone app to Mac OS X

I have an app running on the iPhone that I would like to convert into a runnable application on Mac OS X. It uses a single UIViewController, which I have heard needs to be changed into an NSViewController.

Basically what I am wondering is what needs to be changed about an iPhone application to make it work like a Mac application instead, for instance, is there a mac UIKit equivalent? Or how do I use the Mac interface objects that show up in interface builder, things like this. Is there anything that needs to be fundamentally different about the structure of the code for it to run?

Upvotes: 8

Views: 1017

Answers (1)

clee
clee

Reputation: 11148

ApplicationKit is where you should look.

Upvotes: 2

Related Questions