2

在对象 c 中,我们像这样读取捆绑资源: pathName = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"filetype"];

然后 :

[NSString stringWithContentsOfFile:pathName encoding:NSUTF8StringEncoding error:nil]

但现在我想读取C++文件中的资源内容,但不想要objective-c任何其他方式的代码?

4

1 回答 1

0

您可以使用纯粹基于 C 的 CoreFoundation。查看Accessing a Bundle's ContentsCFBundle 参考

于 2013-04-04T13:21:37.063 回答