I have an NSArray of NSStrings that I am saving to file and then reloading from file when the app is relaunched. Strangely though, the strings have parenthesis around them after they are reloaded.
I save via: writeToFile:atomically:
and I load the array via: arrayWithContentsOfFile:
The issue is that when the NSString goes in it might look like this:
I_am_the_good_old_string
but after reloading the array from file, it looks like this:
(
I_am_the_good_old_string
)
I don't understand why they now have the parenthesis around them. Any help is appreciated.