jasondinh
jasondinh

Reputation: 928

Can keychain on iOS device save anything different than NSString?

I want to save an array/object into keychain but it looks like keychain only support NSString. Anyone has tried to do this before? Thanks!

Upvotes: 2

Views: 3682

Answers (1)

Damo
Damo

Reputation: 12890

The keychain can save anything that obeys NSCoding

See this blog for a class which you can use as a starting point.

Upvotes: 3

Related Questions