在我的应用程序中,我试图获取扩展名为 .txt 且文件位于应用程序中的文件内容。我在下面尝试
path = [[NSBundle mainBundle] pathForResource:@"Last"
ofType:@"txt"];
content = [NSString stringWithContentsOfFile:path
encoding:NSUTF8StringEncoding
error:NULL];
lines = [content componentsSeparatedByString:@"\n"];
NSLog(@"Content Length: %i", [lines count]);
NSLog(@"%@ %@",content,path);
但内容和路径打印null
。有没有人知道它有什么问题?
谢谢。