I have an UIImageView in storyboard which AspectRatio is 1:1, that I want to change to 2:1 programmatically in ViewController in some cases. I create reference of that constraint in ViewController but unable to set the constraint.
Asked
Active
Viewed 1.8k times
11
-
After setting up the constraint, call `view.layoutIfNeeded()`. – Milan Kamilya Jun 21 '17 at 06:35
3 Answers
18
You can change constraint programmatically in swift 3
let aspectRatioConstraint = NSLayoutConstraint(item: self.YourImageObj,attribute: .height,relatedBy: .equal,toItem: self.YourImageObj,attribute: .width,multiplier: (2.0 / 1.0),constant: 0)
self.YourImageObj.addConstraint(aspectRatioConstraint)

Jugal K Balara
- 917
- 5
- 15
18
As it's stated in Apple's guide, there're three ways to set constraints programmatically:
- You can use layout anchors
- You can use the NSLayoutConstraint class
- You can use the Visual Format Language
The most convenient and fluent way to set constraints is using Layout Anchors.
It's just one line of code to change aspect ratio for your ImageView
imageView.heightAnchor.constraint(equalTo: imageView.widthAnchor, multiplier: 1.0/2.0).isActive = true
To avoid "[LayoutConstraints] Unable to simultaneously satisfy constraints." you should add reference to your ImageView's height constraint then deactivate it:
heightConstraint.isActive = false

Eugene Brusov
- 17,146
- 6
- 52
- 68
-1
Set the multiplier of the constraint to 0.5 or 2 depending on your constraint condition, It'll become 2:1

bestiosdeveloper
- 2,339
- 1
- 11
- 28
-
Thanks for your answer, but i am not clear about it. I tried to set constraints like this, 'cons_coverImageRatio.constant.multiply(by: 0.5)'. But its not working. Would you show me how to set that constraint – Shariif Islam Jun 21 '17 at 06:32
-
simple use like `self.imageAspectConstraint.multiplier = 0.5`, and then call `self.imageView.layoutIfNeeded()` – bestiosdeveloper Jun 21 '17 at 06:48
-
11