Positioning Labels in Different Devices

30 Views Asked by At

I'm design an app that loads a huge vertical image into a scrollView. This Image has some pre-written text (just to minimize the number of labels in Interface Builder) and i want to print content to some UIlabels. The problem i'm face is: When i change the Device type, my labels don't follows the image behind, because of the label's constant auto layouts constrains. So i tried to re-positioning the labels in code, checking with a switch case in viewDidAppear() method, for the Width of the screen, then moving the label to the desired position in Height. It worked, but as soon i scrolled the view, all the Labels came back to his "original" place. I didn't get what was wrong with it. Should be the constrains taking control again?

I would like to know what would be the most proper way to do this, as auto layout works with size classes and not Devices. Any idea will help.

Here's some screens to illustrate better what i'm facing:

Right Way This is the iPhone 6Plus View - RIGHT

Wrong Way This is the iPhone 5S View - WRONG

0

There are 0 best solutions below