I am testing my app in two devices. One iOS 4.3, and the other has iOS 5. The app is built in ios 4.3. Why do images look blurry when I run in iOS?
Do I need to take any extra care when apps run on iOS 5?
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.
You may be facing an issue of anti-aliasing that is applied when a view’s frame are fractional (particularly the origin, the rest are adjusted accordingly). Use
CGRectIntegralto recalculate your UIImageView frame.This is a similar question (not of UIImages) but the reason seems very much similar.