We have a mystery !
In our app we use only retina images (@2x marked). Until yesterday non-retina devices showed the images well even when we called the images without @2x at the end.
For example if the file name is 'fun@2x.png' we called [UIImage imageWithName:@"fun"]
.
Today it stopped working and now we have to call [UIImage imageWithName:@"fun@2x"]
for the image to display. (The device is iPhone 3GS iOS 5.1).
We are now afraid that we don't understand something about the retina naming.
What changed ? What is the correct way to deal with it?
Thanks
Shani