views:

268

answers:

2

Hello All...

Currently I have my application in which I am creating some plist file in User's Device and storing some local data.

Now, my confusion is that what happen if i will launch next version of my application and once user will upgrade my application's current version then what happen with that plist file which is stored in Users iPhone Device ?

Thanks in advance...

+3  A: 

When users update application only the application bundle changes and other folders in application sandbox should remain intact.So if you store your data in Documents folder then it will persist after application update.
Edit: See Files Saved During Application Updates section in "Application Development Guide"

Vladimir
+1  A: 

Nothing will happen to the files stored in the App's Documents directory. They will still be intact after the app is upgraded.

Jasarien