Nsstring* filePath = @"foo";Nsstring* fileRoot = [[NSBundle mainBundle] pathForResource:filePath ofType:@"rtf"]; NSLog(@"file root contains %@",fileRoot);
感谢任何人对此的帮助.
@TheAmateurProgrammer,谢谢你的图表.我刚刚将foo.rtf添加到了bundle资源中. fileRoot的结果仍为null.我还缺什么步骤?
Build Phases中Target的“copy Bundle Resources”现在包含foo.rtf. (我不能插入图片,因为我还是新手).
(我可以在fileRoot指向正确后添加内容读取).
解决方法 您添加了该文件,但它是否真的已复制到您的应用程序包中?http://f.cl.ly/items/1d3y2d3b101C0g07462N/Screen%20Shot%202012-10-21%20at%203.08.44%20PM.png
确保将rtf文件复制到资源中.
其次,你只得到rtf的路径,而不是rtf的内容.
Nsstring *fileRoot = [[NSBundle mainBundle] pathForResource:filePath ofType:@"rtf"]; Nsstring *contents = [[[NSAttributedString alloc] initWithRTF:[NSData dataWithContentsOffile:fileRoot] documentAttributes:NulL] string];
这将获得rtf的内容.
总结以上是内存溢出为你收集整理的objective-c – 从XCode Bundle读取文本文件全部内容,希望文章能够帮你解决objective-c – 从XCode Bundle读取文本文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)