Reputation: 358
I'm new in the development app for iPhone. I'm currently developing an app to run on all iPhones, but I'm having a problem when i change emulator the position of button change completely like the screen in below the form. If anyone knows any solution to maintain uniform screen, i would appreciate the help
Upvotes: 0
Views: 62
Reputation: 194
Even if you are using AutoLayout, it looks like your constraints may be wrong. It seems like each row of your keypad is constrained top and bottom based on its distance from nearest neighbors.
However in this case you probably just want to constrain the bottom to the nearest neighbor and set an explicit height constraint.
Upvotes: 2