Reputation: 930
I initially built my project in Xcode 9.3 and updgraded Xcode to 10 . After which all the images in the storyboard look very big. Storyboard renders 3x images by default and the layout looks bad. However everythings fine when the application is run on phone.
How i can reset the storyboard to render appropriate images.
Upvotes: 0
Views: 186
Reputation: 518
There are possible few reasons:
Views added without the constraints. If so, you should enable and set up the views with the constraints.
Image views have Content Mode
different than Aspect Fit
. Set Aspect Fit
mode.
Image views have bigger value of height constraint than cells' height. You should set the views height dependent on superview height.
Upvotes: 1