evgenyneu / keychain-swift

Helper functions for saving text in Keychain securely for iOS, OS X, tvOS and watchOS.
MIT License
2.82k stars 345 forks source link

Is it possible to save to keychain as Dictionary ? #94

Closed X901 closed 5 years ago

X901 commented 5 years ago

Is it possible to save to keychain as Dictionary ?

I have 3 string related to each other

so it won't be good idea to make 3 different values and save them separated

that way I want to ask you is it possible to save values to keychain as Dictionary ?

evgenyneu commented 5 years ago

Is it possible to save to keychain as Dictionary ?

Not directly. But you can save your dictionary to a string in JSON format. Or convert Dictionary to Data. It might be less work just to save as three keys though. :)

X901 commented 5 years ago

Sound good , I add them all in one function when I set them then get every key separated where I need them