What will be best or standard aspect ratio of image to fill view using UIViewContentModeScaleAspectFit, or what’ll be best resolution of image to fill view???
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As for as I know, you’ve no need to worry about the aspect ratio of image. If you set the content mode of the view to UIViewContentModeScaleAspectFit, then it
If the image size is 60×40, and your views size is 200×200, the image will be displayed in the size 180×120, centered on its superview. And your image may loose some details if its superview is too large to fit.