I am using the Device tab in Xcode to view the content of my app. Here is what I see:
The app has iTunes file sharing enabled:
However I am unable to see the App in iTunes (under my Apps) even after synchronising the phone.
I am wondering if there is an alternative way to access the "test-data.csv" file that my app is generating.
XCode does seem only to list the file but does not allow me to click on the file to open it.
EDIT:
This is the file path I use:
NSString *filePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject] stringByAppendingPathComponent:@"test-data.csv"];
As you are using iTunes sharing. You will be able to see the data in iTunes only. Make sure that you are selecting your device first in the iTunes and then going to Application tab. If you are not seeing the apps there, this means your app might be showing in the sharing section. Scroll down a bit and you will see the File Sharing section-> Apps. See if you are able to find your application there.
Hope you might get your app there.