I am developing an iPad app with Xcode 4.6. In order to collect some critical information about the app, during the debug process (for real ios device) I put some data in a text file, and an example can be demonstrated with the following code:
std::ofstream f;
f.open("test.txt",std::ios::out ) ;
for (int i=0;i<100;i++)
{
f << i << std::endl;
}
f.close() ;
After running the app, I want to examine the data in test.txt
, however, I do not know how I can find it. This post seems to be helpful, but I cannot find the Application Data
following his instruction.