我将.gr文件放在与main.cpp相同的目录中,并放在Xcode项目的主项目文件中(这个小程序只有一个.cpp文件)。我用来解析数据的代码如下所示:
ifstream inFile("rome99.gr");
if(!inFile.good()) {
cerr << "The file wasn't found. For Visual Studio users, make sure it's in the same directory as your solution's .vcxproj file." << endl;
pressAnyKeyToContinue();
exit(-1);
}
Xcode没有看到它。我可以通过简单地执行它所说的内容来使其在VS2012中工作,但我希望它能够在Xcode中工作。没有调试器错误。我应该将文件放在别处还是另一个问题?感谢。