我目前正在为iPhone 6和6 Plus更新我的应用程序。 虽然在iOS 7下一切正常但我现在得到了一个切断的XIB,它只在运行时显示了视图左上角的四分之一。一切看起来都应该在Xcode 6预览窗口中。 自上次iOS 7发布以来我所做的更改是: - 启用自动布局 - 设置约束 -Set和iPhone 6和6 Plus LaunchImage。 约束已设定。 对不起,但我还不能发布任何图片。我没有足够的声誉。
答案 0 :(得分:0)
要为那些仍然使用XIB读取此内容的人关闭循环,我想出了问题。您必须使用代码来设置绑定和自动调整遮罩。
- (void)viewDidLoad {
[super viewDidLoad];
// resize to fit window
[[self view] setFrame:[[UIScreen mainScreen] bounds]];
[self view].autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin;
}