标签: cocoa
现在我想将我的Project中的图像导出到一个文件夹,我想这是NSBundle和NSFileManager问题,但我不知道怎么办呢?非常感谢!
答案 0 :(得分:5)
[[someImage TIFFRepresentation] writeToFile:@"path/to/file.tiff" atomically:NO];
会将NSImage导出为tiff文件,尽管你的问题有点模糊