I heard in this TUAW Article that iPhone apps should stop using the Documents folder to store files. Instead they should use the library folder. How do you access the Library folder to store files to it?
Thanks in advance!
I heard in this TUAW Article that iPhone apps should stop using the Documents folder to store files. Instead they should use the library folder. How do you access the Library folder to store files to it?
Thanks in advance!
Use the NSLibraryDirectory
constant instead of the NSDocumentDirectory
constant when you call NSSearchPathForDirectoriesInDomains
. You would only have to worry about this if you actually do plan on writing an application that allows users to manage documents.