I am testing in the simulator with iOS7. All my assets are retina only with the @2x name. I have a very weird behaviour with UIImage.FromFile. Please note that the behaviour is the same with simulator iPad and simulator iPad Retina.
Basically:
- UIImage.FromBundle("Images/close.png"), this will work: it loads the close@2x.png and scales it down
- UIImage.FromFile("Images/close.png"), this doesn't work
- UIImage.FromFile("Images/close@2x.png"), this loads the image but i'm not sure it will do the expected things (ie: downscale it on non retina device and use it correctly on retina device)
Any hint? I thought that iOS7 was handling this automatically.