几个小时以来,我一直试图弄清楚为什么autolayout在我应用CGAffineTransformMakeScale时在iOS8中破坏我的约束但在iOS7中没有。 (我使用Xcode 6.0.1(6A317)与Storyboard和Autolayout)。
代码:
TCTGridController *gridController = self.gridController;
stackController.view.frame = gridController.view.frame;
stackController.stackCollectionView.transform = CGAffineTransformMakeScale(0.1, 0.1);
[gridController.view.superview addSubview:stackController.view];
[UIView animateWithDuration:0.2 animations:^{
stackController.stackCollectionView.transform = CGAffineTransformMakeScale(1, 1);
[stackController.stackCollectionView layoutIfNeeded];
} completion:^(BOOL finished) {
[stackController didMoveToParentViewController:self];
}];
iOS7结果:
iOS8结果:
iOS8上的约束错误:
(
"<NSLayoutConstraint:0x7fa126a9b100 V:[_UILayoutGuide:0x7fa126a9a900]-(120)-[TCTCollectionView:0x7fa125139400]>",
"<_UILayoutSupportConstraint:0x7fa126a8b500 V:[_UILayoutGuide:0x7fa126a9a900(0)]>",
"<_UILayoutSupportConstraint:0x7fa126a8a960 V:|-(0)-[_UILayoutGuide:0x7fa126a9a900] (Names: '|':UIView:0x7fa126a9a810 )>",
"<NSAutoresizingMaskLayoutConstraint:0x7fa126c86840 h=--- v=--- 'UIView-Encapsulated-Layout-Top' V:[UIView:0x7fa126a9a810]-(0)-|>"
)
有什么想法吗?
奥洛克
答案 0 :(得分:7)
CGAffineTransformIdentity在ios7和ios8上的表现不同。这与自动布局和大小类有关。解决方案是删除与ios7上的动画冲突的约束。
// solve the constraint-animation problem
if(NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_7_1) {
// iOS7 remove constraints that conflict with animation
if (self.centerYAlignment != nil) {
self.view.removeConstraint(self.centerYAlignment) //is an IBOutlet
}
} else {
// iOS8 constraint animations are fine
}
答案 1 :(得分:2)
我遇到了同样的问题。 CGAffineTransformMakeScale在iOS7上运行良好,但却导致无法同时满足约束条件&#39; iOS8上的错误。对我来说,解决方案是在应用转换之前将de view添加到父级并在子视图上调用layoutIfNeeded。
在:
subview.transform = CGAffineTransformMakeScale(0.001f, 0.001f);
后:
[view addSubview:subview];
[subview layoutIfNeeded];
subview.transform = CGAffineTransformMakeScale(0.001f, 0.001f);
答案 2 :(得分:1)
问题来自
stackController.view.frame = gridController.view.frame;
而不是来自CGAffineTransformMakeScale。因为我没有取消选中&#34;从NIB&#34;调整视图大小。 所以要解决这个问题,我取消选中&#34;从NIB调整视图&#34;并添加:
[stackController.view setTranslatesAutoresizingMaskIntoConstraints:YES];