且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

通过界面生成器生成的NSIBPrototypingLayoutConstraint自动布局约束iOS7问题

更新时间:2023-01-06 14:12:23

我不得不手动删除在另外的看法限制使用translatesAutoresizingMaskIntoConstraints。

I had to manually remove constraints on the views in addition to using translatesAutoresizingMaskIntoConstraints.

[_viewContainer removeConstraints:_viewContainer.constraints];
[self.view removeConstraints:self.view.constraints];

添加这些更改后,没有更多的错误与动画。

After adding these changes, there were no more errors with animating.