iphone – 如何使用方法stringWithContentsOfFile:encoding:error

我不知道如何使用这种方法.

我想将rtf文件中的数据作为NSString获取,但我不能.

这是我的代码的一部分.

NSString *filePath = @"path of the file";

NSString *ImagePath = [[[NSString alloc] init] autorelease];

imagePath = [NSString stringWithContentsOfFile: filePath encoding:(NSStringEncoding)nil error:(NSError**) nil];

我无法读出该.rtf文件中的数据.我很感激每个人都可以帮助我.谢谢.

最佳答案 试试这个

imagePath = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

点赞