Hi,
I have a plist in my Resources folder that I'm using to store conversion information. I'd like to give the user the ability to "turn off" certain units so that those units will never be used in conversions. I don't want to have to maintain two lists with the conversion information in it.
I am able to save data back to that plist file in the stimulator. (using writeToFile and the pathForResource). I'm wondering if this is a problematic approach.
- Will there be an issues with this on deployment? (i.e. will apple seal the plist)
- What will happen if I push out an upgrade? What if that upgrade contains new units added to the list?
- Would doing something like copying the plist to the user's documents directory make sense?
Thanks.