kivu
kivu

Reputation: 43

access to keychain from app after system update

What's happen to data stored in keychain when user update his iOS version to new system ? i.e user have ios 6 and stored some information from my App in Keychain, are those information will be still avaiable after install ios 7 ??

BR Kivu

Upvotes: 2

Views: 1809

Answers (2)

Luke
Luke

Reputation: 1

After my customers upgraded to a new version of my App using KeyChain.... under iOS7 they lost all the information.

Upvotes: 0

Tarek Hallak
Tarek Hallak

Reputation: 18470

Nothing will happen to data in KeyChain, keychain persists even after the app is removed, it is linked to AppID and the access rights depend on the provisioning profile used when signing your application.

On iPhone, Keychain rights depend on the provisioning profile used to sign your application. Be sure to consistently use the same provisioning profile across different versions of your application

Upvotes: 2

Related Questions