在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;
现在,我想创建一个UIViewController的iPad版xib文件,我该怎么办?即如何将一个IBOutlet连接到两个版本的xib。 任何帮助将不胜感激!谢谢先进!
答案 0 :(得分:4)
您只需要两个具有相应命名的笔尖
MyView~iphone.xib
MyView~ipad.xib
然后确保它们都拥有相同文件的所有者并连接所需的连接。
答案 1 :(得分:1)
转到新文件 - >从左侧选择用户界面 - >选择Empty - >在设备系列下拉列表中选择ipad。
答案 2 :(得分:0)
在xcode 4中,我们无法为单个xib执行此操作,但我们可以同时创建各自的ipad版本。右键单击目标并单击复制。然后选择“复制并转换到ipad”。新目标并创建了一组新的xib。这可能会对你有所帮助。