I use this code:
[image setImage:[UIImage imageNamed:@”some@2x.png”]];
and it work on ios 4.3, but on ios 5.0 I don’t see my image.
Anybody know which kind this problem?
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 normally don’t need to include the @2x in the name – iOS should automatically pick the right filename (some.png or some@2x.png) depending on the scale of the screen. Have you tried this:
instead?