iOS Question Is There anyway to keep application data after re-installing an (iOS) application

noega33

Member
Licensed User
Longtime User
Hi Community,
I'm facing a big issue: When I re-install an application, all data recorded previously by the application is lost.
Is There anyway to keep application data after re-installing an (iOS) application
Thank you
 

hatzisn

Expert
Licensed User
Longtime User
B4X:
    Dim ph As Phone
    ph.KeyChainPut("key", "value")
    ph.KeyChainGet("key")

For not that much data. You can save a JSON string
 
Upvote 1

noega33

Member
Licensed User
Longtime User
B4X:
    Dim ph As Phone
    ph.KeyChainPut("key", "value")
    ph.KeyChainGet("key")

For not that much data. You can save a JSON string
Thank you hatzisn, you are are right, I have a lot of files, not only "configuration data"
chears
 
Upvote 0
Top