a111
a111

Reputation: 2165

change universal application to ipad 3.2 application

i am creating an universal application now i want to change that application into ipad 3.2 application.How can i do that.

Upvotes: 0

Views: 129

Answers (1)

Shaggy Frog
Shaggy Frog

Reputation: 27601

Pretty much the exact opposite of Convert ipad application to iphone. Universal app

  • Remove the .xib created for the iPhone (contains the Main Window/App Delegate/etc.)
  • Remove the NSMainNibFile~ipad entry from your Info.plist file
  • Change the Base SDK setting from 4.x to 3.2
  • Change your Deployment Target setting to 3.2
  • Set the Targeted Device Family build setting to iPad (from iPhone/iPad)
  • Remove any code you've created to make an iPhone-specific code path

Upvotes: 1

Related Questions