2011-08-14 54 views

回答

2

NSImageNSImageRep的容器。加載icns文件時,您會得到一個包含文件中每個大小的NSBitmapImageRep的圖像。您可以迭代圖像的representations屬性以訪問它們。 (此外,圖像會在繪圖時自動選擇最合適的代表。)

+0

Thax很多!這樣可行。我正在使用NSBitmapImageRep * bits = [[myImage representationations] objectAtIndex:2]; – Daniel