0

So I developed an iOS app called Due it a while back, and I had no idea what I was doing at the time. Anyhow, I lost all of the files for it, so i decided to re-create the project, but I stored data in Keychain on the old version. Is there any way that I can get the Keychain data back? (im using the same Bundle Identifier)

I've tried using this: https://stackoverflow.com/a/44310869/4705065 but it doesnt find any data.

  • A side note, look into using some sort of git repository in an attempt to prevent that from happing again. – MwcsMac Nov 02 '18 at 18:48

1 Answers1

1

Not at this point.

You are able to add multiple applications to a Keychain Access Group within an app, but you would have had to do that within the original app you no longer have access to.

More information on Keychain Access Groups.

It would be a big security concern if anyone could access anything within keychain without explicit permission.

Jake G
  • 1,185
  • 9
  • 19