-1

I'm developing an IOS App, and I'm currently working on archiving the data with NSCoder, but I had initially saved the wrong data type to a variable, and now its causing my application to crash, I have fixed the problem that was saving the wrong data, but I now need to delete that corrupted save data.

austinphilp
  • 57
  • 1
  • 9

1 Answers1

1

All data is stored inside the app package. Try deleting the app and re-installing it.

Daniel T.
  • 32,821
  • 6
  • 50
  • 72
  • In this case it's stored in the App Sandbox, not the app package. Data and resources built and added to an app at compile time are added to the app __bundle__, but data saved at runtime is added to the app __sandbox__ – Abizern Nov 30 '14 at 19:40
  • Hmm... It is my understanding that the .app folder is called a package. I could be wrong, but regardless, the data is stored in it. – Daniel T. Nov 30 '14 at 20:15