我使用mgtwitter引擎我的应用程序时出现一个错误

时间:2010-01-15 07:24:02

标签: iphone objective-c

我在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,如其自述文件中所示。

1 个答案:

答案 0 :(得分:4)

NSImage在iPhone上不可用,因为它是Cocoa中AppKit框架的一部分。您将需要处理UIImage,而不是来自Cocoa Touch中的UIKit框架。