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.


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

链接地址: http://www.djcxy.com/p/95772.html

上一篇: Xcode:将iPhone转换为iPad的问题

下一篇: iPad:如何将iPhone应用程序转换为iPad兼容?