标签: cocoa core-data
我已经将NSPersistentDocument类子类化了。我想在文档中添加图像。我的形象很好。如何将其设置为.jpg文件?
答案 0 :(得分:0)
使用属性语法(NSImage)加载JPEG文件并将结果self.image = [[[NSImage alloc] initWithContentsOfFile:…] autorelease]设置在文档的属性中。同时,在您的笔尖中,将图像视图的value绑定绑定到文档的image属性。
NSImage
self.image = [[[NSImage alloc] initWithContentsOfFile:…] autorelease]
value
image