请指出我是否遗漏了什么?我有一个“宇宙”类型的项目。它适用于 iPhone。
我应用以下步骤来获取 iPad 版本。
1) duplicate the .xib.
2) Open source Code mode { xib file} and do the followings.
a) changed <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
to
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="8.00">
b) replaced IBCocoaTouchFramework with IBIPadFramework
c) changed the resolution of IBUIView to
<string key="NSFrame">{{0, 20}, {768, 1024}}</string>
现在,当我执行时,我仍然看到输出,好像 iPhone xib 嵌入到 iPad 视图中?
我错过了什么吗?请指出我正在做的错误?