I'm working on a dynamic app in which I'm getting CGRect
separately (x, y, width, height) values from a web service for each of the UI objects inside a view.
On server, they will set frames based on following size (1080 x 1920), so lets say, if I'll get a CGRect
with following values: (200, 20, 100, 100) then it should be fit into device based on device size and server specified size.
So with case of iPhone 5 - new frame will be same 200, 20, 100, 100.
So with case of iPhone 6 (375 x 667) - new frame will be ?
So with case of iPhone 6+ (414 x 736) - new frame will be ?
The main thing is that, whatever the frame will be received into the app for a particular UI object, it should be looks exactly as in admin panel specially for margins.
For a note,
I'm setting UI with AutoLayout in Storyboard only.
Any suggestion?
This is an example:
Example 1:
| _________________ |
| | | |
| | | |
| | | |
| | | |
| |_________________| |
| |
Example 2:
| _________ |
| | | |
| | | |
| | | |
| | | |
| |_________| |
| |
By above examples, I'm trying to explain that, by whatsoever frame will be coming from server, if this looks like above on server, the similar would be on device, but it should be based on device CGRect
.