我可以在Objective-C中获得markdown文件的内容吗?

时间:2017-08-28 09:24:44

标签: ios objective-c

我可以用这种方式获取.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文件的内容。

提前致谢。

1 个答案:

答案 0 :(得分:1)

转到:目标 - > "构建阶段" - > "复制捆绑资源"然后在这里添加该特定文件。

确保test2文件存在enter image description here