我想在我的 iPhone 应用程序上写一个文件。我的文件在我的项目文件夹中,但是当我尝试访问它时:
NSString *myFile = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"txt"];
NSLog(@"%@",myFile);
我得到以下路径:
2012-06-13 17:36:56.398 MyFileApp[610:15203] /Users/Damian/Library/Application Support/iPhone Simulator/5.1/Applications/1FFD4436-DCCA-4280-9E47-F6474BEE0183/MyFileApp.app/myFile.txt
为什么 ?
感谢您的建议