gpt4 book ai didi

ios - 以编程方式且没有尺寸类别的不同设备方向的各种自动布局约束?

转载 作者:行者123 更新时间:2023-11-29 12:08:26 24 4
gpt4 key购买 nike

这个问题和这个类似: Autolayout and Device Orientation

但是 updateViewConstraints 永远不会被调用(因为旋转时没有调用提到的方法,在 iOS 9.1 模拟器上测试)。一般来说,这个主题似乎不包含正确答案或答案太旧。

我不能使用大小类,因为该项目也应该支持 iOS 7,它支持大小类,但有很大的限制。

看来我需要清除并重新创建每个旋转事件的所有约束:

1)哪个方法应该重新创建约束?

2) 如何重新创建它们?也许我错误地删除了它们:

for (UIView *v in self.view.subviews)
{
v.translatesAutoresizingMaskIntoConstraints = NO;
}
for (UIView *v in self.view.subviews)
{
[v removeConstraints:v.constraints];
[self.view removeConstraints:v.constraints];
}
[self.view removeConstraints:self.view.constraints];

或者您能否建议解决此问题的更好方法?

最佳答案

您可以在 viewDidLoad 上以编程方式创建两组不同的约束,并且只激活您想要使用的那些

myPortraitConstraint = NSLayoutConstraint(item: someItem, attribute: .Left, relatedBy: .Equal, toItem: self, attribute: .Left, multiplier: 1.0, constant: 10
myPortraitConstraint.active = true

myLandscapeConstraint = NSLayoutConstraint(item: someItem, attribute: .Left, relatedBy: .Equal, toItem: self, attribute: .Left, multiplier: 1.0, constant: 0
myLandscapeConstraint.active = false

然后在旋转事件上切换您希望使用的约束

myPortraitConstraint.active = false
myLandscapeConstraint.active = true
self.view.layoutIfNeeded()

关于ios - 以编程方式且没有尺寸类别的不同设备方向的各种自动布局约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34226018/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com