如果我在模拟器中创建一个文件,我会成功:
const char* testFile = "Test.java";
ofstream createTest;
createTest.open(testFile);
createTest << [CodeView.text UTF8String] ;
createTest.close();
在 iOS 5.0 上,这工作正常,至少在模拟器中,但在我的升级版 xcode(ios 6.1)上,这只是抛出我:
libc++abi.dylib: terminate called throwing an exception
我如何绕过这个错误,(有没有办法使用 C++ 加载/写入文件夹中的现有文件?)