我可以用这种方式获取.txt文件的内容:
NSString *articlePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@".txt"];
return [NSString stringWithContentsOfFile:articlePath encoding:NSUTF8StringEncoding error:nil];
但是,当文件是降价文件时,它是没用的:
NSString *articlePath = [[NSBundle mainBundle] pathForResource:@"test2" ofType:@".md"];
return [NSString stringWithContentsOfFile:articlePath encoding:NSUTF8StringEncoding error:nil];
articlePath
是" nil"但该文件实际存在。
我想知道是否有任何方法可以用来获取.md文件的内容。
提前致谢。