我在appcontroller中遇到了在此函数中使用NSImage的错误 就像在NSImage之前预期的那样')'。
- (void)imageReceived:(NSImage *)image forRequest:(NSString *)identifier
{
NSString *path = [[NSString stringWithFormat:@"~/Desktop/%@.tiff", identifier]
stringByExpandingTildeInPath];
[[image TIFFRepresentation] writeToFile:path atomically:NO];
}
我检查了我的程序我没有语法错误,但我仍然在我的应用程序中出现此错误。 我从我的应用程序中获取了mgtwitterengine的代码并将其用于iphone,如其自述文件中所示。