1

我最近使用故事板将我的项目从使用 xib 文件的 ios4 转换为 ios6。转换我界面中的中央按钮后,它们被压在一起了。我在故事板中使用自动布局。

故事板视图: 在此处输入图像描述

iPhone 6.0 模拟器视图 在此处输入图像描述

用于交换 xib 和 StoryBoard 的 AppDelegate 代码

    UIStoryboard*  sb = [UIStoryboard storyboardWithName:@"MainStoryboard"
                                              bundle:nil];
self.viewController = [sb instantiateInitialViewController];
//self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];//Change this back if all doesnt not go well
4

1 回答 1

3

这是由于自动布局而发生的。您有正在调整对象的约束。如果您想使用 autoLayout,我建议您观看 WWDC 视频“Session 202 - Introduction to Auto Layout for iOS and OS X”和/或阅读了解 AutoLayout

于 2013-02-12T21:43:45.540 回答