Originally Posted by Apple Documentation for pathForResource:ofType:
The method first looks for a matching resource file in the non-localized resource directory of the specified bundle. (In Mac OS X, this directory is typically called Resources but in iPhone OS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations. For more details see Bundles and Localization.
Your technique is not working for reading the Documents directory. And you cannot save files into the bundle.
I guess I don't really need to create an empty file first.
Where should I be storing the plist if not in the Main Bundle? in Documents?
And How do I save a plist?
Would I save it with do it with:
[populatedDict writeToFileath1 atomically:YES];