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

Get*_*tsy 7 iphone ipad

我有几个iPhone应用程序,我想将它们转换为iPad.是否有链接,我可以看看有关如何将iPhons应用程序转换为iPad兼容的简单程序?我已经安装了3.2 SDK等,已准备好开发环境.如果这是一个重复的问题,请原谅我.

Ric*_*ich 8

你真的应该为iPad重新设计你的iPhone应用程序(不只是让它们更大),但如果你只想看看它的外观而不做任何代码更改.将以下内容添加到Info.plist中,

<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
Run Code Online (Sandbox Code Playgroud)

更多信息:http://developer.apple.com/ipad/sdk/index.html

编辑:见下面的评论

  • 我被告知我没有回答问题,你应该在Xcode中使用Project - >升级当前目标iPad.http://developer.apple.com/iphone/library/documentation/General/Conceptual/iPadProgrammingGuide/StartingYourProject/StartingYourProject.html (4认同)