Getsy
Getsy

Reputation: 4905

iPad:How to convert iPhone apps into iPad compatible?

I have several iPhone apps, which i want to convert them to iPad. Is there a link where i can have a look at simple procedures about how to convert iPhons apps into iPad compatible? I already installed 3.2 SDK etc., having development environment ready. Forgive me if it is a repeated question.

Upvotes: 7

Views: 17544

Answers (1)

Rich
Rich

Reputation: 552

You really should redesign your iPhone apps for iPad (not just make them bigger), but if you just want to see what it looks without making any changes in code. Add the following to your Info.plist,

<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>

More Info: http://developer.apple.com/ipad/sdk/index.html

EDIT: see comment below

Upvotes: 8

Related Questions