1

在 xcode4.2 中,我有一个与同名 xib 文件捆绑在一起的 UiViewController。在 UiViewController 中,我有一些如下所示的 IBOutlets 连接到 xib。

    @property (retain, nonatomic) IBOutlet UIButton *topButton;
    @property (retain, nonatomic) IBOutlet UIButton *hotButton;
    @property (retain, nonatomic) IBOutlet UIButton *newButton;
    @property (retain, nonatomic) IBOutlet UIButton *starredButton;

现在,我想创建一个 iPad 版本的 UIViewController 的 xib 文件,我该怎么办?即如何将一个IBOutlet 连接到两个版本的xib。任何帮助将不胜感激!感谢先进!

4

3 回答 3

4

您只需要两个具有适当命名的笔尖

MyView~iphone.xib
MyView~ipad.xib

然后只需确保它们都具有相同的文件所有者并连接您想要的连接。

于 2012-04-22T10:23:13.957 回答
1

转到新文件->从左侧选择用户界面->选择空->在设备系列下拉列表中选择ipad。

于 2012-04-22T08:35:43.007 回答
0

在 xcode 4 中,我们不能为单个 xib 执行此操作,但我们可以一次创建各自的 ipad 版本。右键单击目标并单击复制。然后选择“复制并过渡到 ipad”。新目标和新集的 xibs 被创建。这可能会帮助你。

于 2012-04-22T08:45:40.737 回答