在NSImage 类参考中,据说存在方法initWithData
,但为什么 xCode 说它不存在?
我这样使用它:
NSData *imgData = [[imageView image] TIFFRepresentation];
fotoImg = [NSImage initWithData:imgData];
我收到警告:
Class method '+initWithData:' not found (return type defaults to 'id')
为什么会这样?