up vote 1 down vote favorite
1
share [g+] share [fb]

I have an iPhone app that I would like to port over to the iPad, but I would like to have as little duplication as possible.

How do people usually go about doing this?

In xcode can you have different targets for iPhone and iPad and perhaps do some pre-processor checks? Or is it best to simply have two separate projects altogether?

Note, Im NOT talking about running the iPhone app on the iPad, I mean creating a native 3.2 app...

EDIT

So it looks like creating a universal application is the way to go:

http://developer.apple.com/iphone/library/documentation/General/Conceptual/iPadProgrammingGuide/StartingYourProject/StartingYourProject.html#//apple_ref/doc/uid/TP40009370-CH9-SW8

But what I still dont understand is how to select different NIB files based on your current deployment???

Thanks a lot

link|improve this question

71% accept rate
Are you looking for the 2x option? I don't think you can otherwise you recode it. I think I searched this up a while back because I was using Cocos2d and found I couldn't do it because Cocos2d is iPhone native. – thyrgle Sep 3 '10 at 3:57
Do you want to port to a separate "HD" app for the iPad, or build a Universal app that will run on both? – hotpaw2 Sep 3 '10 at 4:01
@hotpaw2, I dont really know, I guess I want a Universal app, sounds like less duplication – Mark Sep 3 '10 at 4:26
@thyrgle no, like the question says, Im NOT looking for that option – Mark Sep 3 '10 at 4:27
feedback

2 Answers

up vote 2 down vote accepted

For minimal duplication, you can use one project, with 2 sets of .nib files, but one set of source code files which include run-time checks for the UIUserInterfaceIdiom differences.

If you want two (or more) apps instead of a Universal app, just create two targets containing only the appropriate .nib files, and #ifdef the run-time check results using a Preprocessor Macro define in each target's Build Settings to force iPhone or iPad idiom only.

link|improve this answer
yep thats what Im looking for, what exactly is the UIUserInterfaceIdiom? I cant find much on it? – Mark Sep 3 '10 at 4:48
It's a device property that tells an app about the device on which it's running, documented in the UIDevice Class Reference on developer.apple.com – hotpaw2 Sep 3 '10 at 5:09
ah, that one, whops, so now how do I chose, which NIB to load based on the device? – Mark Sep 3 '10 at 6:59
1  
Here's the process I used: 1. Update your target to be a single universal application 2. Make note of the new XIB file XXX-iPad.xib that xcode creates for you 3. Create new XIB files that correspond to your iPad application (you can create new XIB files that point to your existing UIViewController's, just add a single "View XIB", change its class to your existing view controller) 4. Inside that XIB file, change the normal XIB files that load to point to the new XIB files you made in step 3 5. Connect up your IBOutlet's like you would normally in your new XIB – Mark Sep 8 '10 at 4:56
feedback

The latest (3.2.3) Xcode auto-generates a Universal project which is a great starting point to see how to target iPad and iPhone in one Xcode project.

File > New Project > Window-based Application > Product : Universal

link|improve this answer
What is a pain about this project type is that it does not create a ViewController so you can do the viewish things like rotate the display. So you have to modify the code to supply that appropriate files. – LilMoke Mar 30 '11 at 14:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.