4
我需要從url創建一個NSImage
,然後將其設置爲我的應用程序中的圖像視圖。我嘗試了一些我在網上找到的代碼,但沒有奏效。如果有人知道如何做到這一點,任何幫助都會很棒。從網站URL的NSImage
感謝
我需要從url創建一個NSImage
,然後將其設置爲我的應用程序中的圖像視圖。我嘗試了一些我在網上找到的代碼,但沒有奏效。如果有人知道如何做到這一點,任何幫助都會很棒。從網站URL的NSImage
感謝
你會想看看
initWithContentsOfURL:
Initializes and returns an NSImage instance with the contents of the specified URL.
- (id)initWithContentsOfURL:(NSURL *)aURL
Parameters
aUrl
The URL identifying the image.
Return Value
An initialized NSImage instance, or nil if the method cannot create an image representation from the contents of the specified URL.
嗯,我得到一個錯誤,當我嘗試 NSImage中* MYIMAGE = [NSImage中initWithContentsOfURL:[NSURL URLWithString :@ 「http://somesite.com/image.png」]];有任何想法嗎? – nosedive25 2010-04-18 02:42:21
什麼類型的錯誤? – 2010-04-18 02:48:40
我得到了+ [NSImage initWithContentsOfURL:]:無法識別的選擇器發送到類0x7fff704e6340 – nosedive25 2010-04-18 02:50:49