Nitish
Nitish

Reputation: 14113

Set subview height relative to parent view in Storyboard

I have a UIImageView in a UIViewController's view. What I want is to set it's height 1/3rd that of the view no matter what the screen size is. I of course know how to do this from code. But how to accomplish this using Storyboard/Interface builder only ?

Upvotes: 9

Views: 3299

Answers (1)

Ozgur Vatansever
Ozgur Vatansever

Reputation: 52093

Add a height constraint whose multiplier value is 1/3 so the image view's height will be one third of its superview's height.

enter image description here

--

Here is how it looks with different device sizes:

Bad rendering on small screen    Bad rendering on small screen     Bad rendering on small screen    

Upvotes: 20

Related Questions