How to set autolayout for UIImageView /UIView so that the image view width and height increases a bit for iphone 6 and 6 plus. I have tried adding the constraint Aspect ratio but the increased height and width are very big. Is there anyway to set the constraint height and width of image view can be set manually for iphone 6 and 6 plus. Take a look at the screenshot the image view in iphone 6 and 6 plus should be little smaller than it is showing now.
If you select Aspect Ratio for multiple items, Auto Layout chooses the width of one of the items for the numerator and the height of another item for the denominator. To change the initial aspect ratio, edit the Multiplier field of the Attributes inspector for the constraint.
Here is the essential problem: the only way in which UIImageView interacts with Auto Layout is via its intrinsicContentSize property. That property provides the intrinsic size of the image itself, and nothing more.
aspectRatio(16/9, contentMode: . fit) , the aspect ratio implementation takes the proposed size, and proposes a new size to its child. When the content mode is . fit , it fits a rectangle with the desired aspect ratio inside the proposed size.
UIImage contains the data for an image. UIImageView is a custom view meant to display the UIImage .
As I understood your problem is that you want to control how much the image will be increased in each different screen size. You can control everything. What you need to do is to assign an equals width constraint on your image. Preferable on image's width. The relation will be with the superview and then you can change the relation by adding your own Multiplier.
What you need to do exactly:
1) Select your image view.
2) Hold down the control key. While you are holding it, drag your mouse from the image view to the outer view.
3) Select 'Equals width'.
4) Double click on your constraint in the 'Constraints' tab.
5) Ensure that the image view is presented as the first item, if not click on the first item and select 'Reverse first and second item'.
6) Play with the multiplier until you are satisfied with the result on the preview screen.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With