I'm reading Erica Sadun's iPhone Developer's Cookbook, and ran into a question.
She says in the book that the way to find the user's Documents directory is with the code:
[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
but that seems slightly brittle, and dissimiliar to the normal Mac way of doing it, which would be:
NSSearchPathForDirectoriesInDomains(NSDocumentsDirectory, NSUserDomainMask, YES);
Are there any particular reasons to use one over the other?
In swift v3, I used the following snippet
Objc:
Swift:
You'll want the first element of the returned array.
You should consider using the NSFileManager methods which return URLs, which are the preferred format.
This method is intended to locate known and common directories in the system.
An array of NSURL objects identifying the requested directories. The directories are ordered according to the order of the domain mask constants, with items in the user domain first and items in the system domain last.
Here is the code that I use in my framework.
I use this