iOS Question keep files in iphone after app have been remove

cambol

Active Member
Licensed User
I do File.MakeDir(File.DirDocuments, "backup")
and File.Copy(File.DirAssets,"test.txt",File.DirDocuments & "/backup","test.txt")

and this app install in iphone ~

after remove this app from iphone , this file File.DirDocuments & "/backup","test.txt" also been remove .

Is there any way to keep this File.DirDocuments & "/backup","test.txt" in iphone after app have been remove .
 

tufanv

Expert
Licensed User
Longtime User
1)add iphone to selected libraries
2) dim p as phone
3) p.keychainput("key","Value") ' This will add a value to keychain and even the app is removed you can retrieve
4) to retrieve use : p.keychainget("key")

Thats all
Can you teach how to use keychain . I have no idea about keychain .
 
Upvote 0
Top