does anyone know how to access different formats of an icns file? For example this file contains multiple sizes of t开发者_Python百科he same icon:
In some cases I just want the large one and in other cases I want the small one. I couldn't find something in Cocoa.
An NSImage
is a container for NSImageRep
s. When you load an icns file, you get an image containing an NSBitmapImageRep
for each size in the file. You can iterate over the image’s representations
property to access them. (Also, the image will automatically choose the most appropriate rep when drawing.)
精彩评论