Vitya Shurapov
Vitya Shurapov

Reputation: 2308

How to set up different Auto Layout constraints for different screen sizes

I have a tableView with static cells. The cell contains an ImageView which fills it completely. And I have another smaller ImageViews atop. I position this ImageViews with constraints. I have a question about resizing the constraints. How can I set different constraint constants for different devices sizes without programming if/else loops. Is there a way to set it in the storyboard? I have a leading constraint to parent layout for example with an constant value of 10. This is okay for the iPhone 5 screen, but on an iPhone 6/ 6 plus screen it should be higher than 10.

iPhone5 Autolayout

Screen Shot

iPhone6 Autolayout

Screen shot

Upvotes: 33

Views: 40439

Answers (4)

Cem
Cem

Reputation: 502

You can use BayKit for this job.

What is BayKit:

Calculates the global offset for all screen sizes by depending on given screen size and given offset.

How to use BayKit: Usage is very easy, just import BayKit and set constant value with BayKit like this:

import BayKit

class MyViewController: UIViewController {
lazy var box = UIView()
let magicOffset = BayKit()

override func viewDidLoad() {
    super.viewDidLoad()
    view.addSubview(box)
    box.translatesAutoresizingMaskIntoConstraints = false

    box.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: magicOffset.offseter(scaleFactor: 1.0,
    offset: 24, direction: .horizontal, currentDeviceBound: BayKit.DeviceList.iPhone5.screenWidth)).isActive = true
}
}

As you can see this line calculating offset for all screen sizes:

magicOffset.offseter(scaleFactor: 1.0, offset: 24, direction: .horizontal, currentDeviceBound: BayKit.DeviceList.iPhone5.screenWidth)

Offseter Features:

  • scaleFactor: You can set if you want bigger or smaller then given offset(for default set 1.0).
  • offset: Preferred constant in tested device.
  • direction: Which direction are you looking for,i.e. (for width, leading, trailing use .horizontal,for height, top, bottom use .vertical)
  • currentDeviceBound: Find your best fit device and set as a main device with this. BayKit will calculate constraints with depending on your best fit screen!

Example Result:

enter image description here

Upvotes: 2

Saheb Roy
Saheb Roy

Reputation: 5957

Very easy. You can change constants values for difference size classes in Storyboard. I am giving u a few steps after which you will be able to grasp it.

First we create constants as you can see on this view enter image description here

Next we select the constant we want to change the value in other size classes.

enter image description here

Now comes the tricky part. In the attribute inspector after selecting the constant, you can see the value of the constant. Right beside you can see the PLUS (+) sign, left of the "constant".

enter image description here

Click on it and select your size class that you want. Here i have selected Regular Height Regular Width i.e for iPad sizes.

enter image description here

Next we give it a new value. So the constant, which normally is of value 61, will function as 10 when rendered in a size class of iPad size classes.

enter image description here

Here is the output --

iPhone 4:

enter image description here

iPad Air:

enter image description here

As you can see, the same constants has different value in runtime corresponding to different size classes.

Hope my explanation helped you.

Upvotes: 59

Kuldeep Tanwar
Kuldeep Tanwar

Reputation: 3526

Without writing a single line of Code!

Once my junior developer asked me the same question that how can I differentiate between iPhoneSE and iPhone6 for some constraint at that time there was only one solution that was writing some thing like

if device == iPhoneSE { 
   constant = 44 
} else if device == iPhone6 {
   constant = 52
}

To overcome this issue I created a library Layout Helper so now you can update constraint for each device without writing a single line of code.

enter image description here

Step 1

Assign the NSLayoutHelper to your constraint

enter image description here

Step 2

Update the constraint for the device you want

enter image description here

Step 3

Run the app and see the MAGIC

enter image description here

Upvotes: 22

Vitya Shurapov
Vitya Shurapov

Reputation: 2308

Finally, I`ve found the solution which works in my case.

  1. I put the transparent view and added Align Center X/Y to Superview(background image) with the needed offset in the way which it suits my frame for posters(on the background image)- Constraints for the transparent view
  2. Then I attach Equal width/height to my Superview(background image) for that transparent view and change multiplier in equal width(manually I picked 0.61)
  3. After that, I landed my 1 poster. I also centered both vertically and horizontally with offset and used this set of constraints- Proportional width to Superview, Aspect ratio.
  4. And the last I disposed my second poster with this constraints- Leading space to Poster1, Align CenterY to Poster1(with the offset in my case) and Equal width/height. Constraints for the Poster 1/2

As the result, I have really adaptive Autolayout which works almost great on iPhones 5-6-6+

Upvotes: 4

Related Questions