4

我需要NSImage从 url 创建一个,然后在我的应用程序中将其设置为图像视图。我尝试了一些我在网上找到的代码,但没有奏效。如果有人知道如何做到这一点,任何帮助都会很棒。

谢谢

4

1 回答 1

5

你会想看看

 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.

来自http://developer.apple.com/mac/library/documentation/cocoa/Reference/ApplicationKit/Classes/NSImage_Class/Reference/Reference.html#//apple_ref/occ/instm/NSImage/initWithContentsOfURL

于 2010-04-18T02:28:43.583 回答