假设我有一个 UIView,其中包含一个必须为 4:3 的子 UIView。我想在代码中使用 AutoLayout 来解决这个问题。
我一直在努力使用 AutoLayout,但我还没有弄清楚如何做到这一点。
你知道如何解决这个问题吗?
非常感谢。
我附上一张图片来更好地解释我的意思。 http://d.pr/i/d0Oc
假设我有一个 UIView,其中包含一个必须为 4:3 的子 UIView。我想在代码中使用 AutoLayout 来解决这个问题。
我一直在努力使用 AutoLayout,但我还没有弄清楚如何做到这一点。
你知道如何解决这个问题吗?
非常感谢。
我附上一张图片来更好地解释我的意思。 http://d.pr/i/d0Oc
我想通了。
//Given a childView...
NSLayoutConstraint *constraint =[NSLayoutConstraint
constraintWithItem:childView
attribute:NSLayoutAttributeWidth
relatedBy:NSLayoutRelationEqual
toItem:childView
attribute:NSLayoutAttributeHeight
multiplier:4.0/3.0 //Aspect ratio: 4*height = 3*width
constant:0.0f];
[childView addConstraint:constraint];
这是 Swift 3 的语法:
NSLayoutConstraint(
item: item,
attribute: .width,
relatedBy: .equal,
toItem: item,
attribute: .height,
multiplier: width / height,
constant: 0)
我已经尝试了上面的所有答案,但没有奏效,这是我使用 swift 3 的解决方案:
let newConstraint = NSLayoutConstraint(item: yourView, attribute: .width, relatedBy: .equal, toItem: yourView, attribute: .height, multiplier: 560.0/315.0, constant: 0)
yourView.addConstraint(newConstraint)
NSLayoutConstraint.activate([newConstraint])
NSLayoutConstraint.deactivate(yourView.constraints)
yourView.layoutIfNeeded()