I am developing for iOS 5. What I would like to do is read the list of files in my app’s Documents Directory and list them in the UITableView. I found an article on StackOverflow, but the API’s used have been deprecated. Any ideas on what to do here?
Share
You can insert the files of the directory into an
NSArrayand list them in the cells like this:cellForRowAtIndexPath:
This still works in iOS5 and has not been deprecated.