In XCode 4 when working on an iOS project (maybe it was in XCode 3 too and I just hadn't noticed it) there is field under build settings called "Combine High Resolution Artwork", which can be set to yes or no.
What exactly does this setting do?
In XCode 4 when working on an iOS project (maybe it was in XCode 3 too and I just hadn't noticed it) there is field under build settings called "Combine High Resolution Artwork", which can be set to yes or no.
What exactly does this setting do?
From Xcode's quick help:
In other words, the setting probably has no effect under iOS at the moment. It would combine
abc.png
andabc@2x.png
into one multi-page TIFF file, which would be convenient under OS X becauseNSImage
can handle such files and use the image representation that is best suited for the desired output size and device. If future Apple hardware will have higher screen resolutions, this setting will probably play an important role in how developers deal with it.