tags:

views:

13

answers:

1

I'm not sure how best to word the Title of this, so if someone can suggest a better one, please feel free to edit.

I'm writing an app for iPad that requires me to create some of the app data files with the iPad itself during development, i.e. a tool I am building with the iPad will be used by the developers themselves to create sample files that can be played by the app itself.

My question is, how can I best do this? I tried writing files to a local dir on my mac while the iPad was connected but I get a crash. Ideally if there is some way for me to generate an output file on my iPad and get it transferred to my Mac while my dev build is running, I'd do that.

Suggestions?

A: 

It looks like the trick it to use Apple's File Sharing to place files in a folder accessible through iTunes, explained here:

Standard Application Behaviors

The gist is to add a UIFileSharingEnabled plist key set to true and then query the Documents folder for your application like so:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
Joey