我需要从网址创建NSImage
,然后将其设置为我的应用中的图片视图。我尝试了一些我在网上找到的代码,但它没有用。如果有人知道怎么做,任何帮助都会很棒。
由于
答案 0 :(得分: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.