4

Is it possible to remove a my iPhone application without removing my application's data?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Sankar M
  • 4,549
  • 12
  • 37
  • 55
  • Could you be more specific; ie: What Platform? What do you mean by local db? – Stephen Melvin Sep 05 '11 at 06:15
  • 1
    @steve I think he specified iphone in the tags, so isn't it obvious – Robin Sep 05 '11 at 06:20
  • 1
    @robin: He didn't. In fact, there was absolutely no mention of iOS in the original question. It was just a question about an "objective-c application". – BoltClock Sep 05 '11 at 06:27
  • possible duplicate of [How to store local data after user delete my iOS app?](http://stackoverflow.com/questions/9180226/how-to-store-local-data-after-user-delete-my-ios-app) – Korayem Mar 05 '14 at 12:14

1 Answers1

6

No it is not possible. You can always implement a remote backup service such as Dropbox.

Once a user taps the x to remove an app from the Springboard, all of the data is removed. Remote backup is your best option.

WrightsCS
  • 50,551
  • 22
  • 134
  • 186