我正在使用自动布局视觉格式语言并使用以下表达式:
- H:|[_tableView]|
- H:|[_actionButton]|
- V:|[_tableView][_actionButton(==buttonHeight)]|
它们在 9 和 10 中运行良好,但在 iOS 8.1 中,我们注意到布局没有按预期工作。该视图正在获得两倍的尺寸。
- 对于 iOS 10
<UIWindow: frame = (0 0; 320 568);>
<UIView: frame = (0 0; 320 568);
对于 iOS 8.1
<UIWindow: frame = (0 0; 320 568);>
<UIView: frame = (0 0; 640 1136);>
我使用的测试代码:
- 视图控制器 - http://pastebin.com/PjQpKJBD
- AppDelegate.m - http://pastebin.com/4iri9Yp5
提前致谢