struct UserData {
var userName: String? = nil
var password: String? = nil
var phone: String? = nil
var email: String? = nil
var image: UIImage? = nil
var categoryName: String? = nil
}
I need to save and retrieve this data into keychain.How can save and retrieve in proper way and also while i retrieve data i need to filter this data with category name
You can make UserData conform to Codable by implementing custom encoder and decoder.
All the fields except image are codable by default. You can store the image as string by exporting it's data as base64String.
Then you can transform the struct into data with JSONEncoder. And use it's base64Encoded representation to store in keychain.
But this approach has a serious issue: keychain is not good for storing large amounts of data. It is meant to be used to store passwords and stuff.
So I'd make some sort of service that would manage UserData objects. It would store sensitive data like password in the keychain, and other not-so-sensitive fields as files on a disk.