views:

174

answers:

1

I have my code all set up to actually record the files. What I need, though, is a way to see where they are all saved and list them in a UITableView. I'm not asking the the implementation for the table; I only need a way to see where they are all saved. Thanks.

A: 

All your data is saved into your applications document folder. You can access it with: NSString *documentsDirectory; NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES); if ([paths count] > 0) { documentsDirectory = [paths objectAtIndex:0]; }

Assign an array to get a list of all your recorded files.

CodeWriter