我们读取这样的bundle资源:
pathName = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"filetype"];
然后:
[NSString stringWithContentsOfFile:pathName encoding:NSUTF8StringEncoding error:nil]
但是现在我想在C++
文件中阅读资源内容,但是不想要任何其他objective-c
代码吗?
答案 0 :(得分:0)
您可以使用CoreFoundation,它纯粹是基于C的。查看Accessing a Bundle's Contents和CFBundle reference。