LeadKit/TIKeychainUtils
Ivan Smolin 10ec9408ad feat: Change access modifiers in `DefaultJsonNetworkService` from `public` to `open`, added additional Moya plugins processing
add `DisplayDecodingErrorPlugin` for showing developer-frendly decoding error messages
add Gemfile for cocoapods versioning
2022-04-06 20:57:55 +03:00
..
Sources/KeychainCodableBackingStore feat: Add TIKeychainUtils 2021-04-29 15:05:38 +03:00
README.md feat: Fix pr issue 2021-04-30 13:18:27 +03:00
TIKeychainUtils.podspec feat: Change access modifiers in `DefaultJsonNetworkService` from `public` to `open`, added additional Moya plugins processing 2022-04-06 20:57:55 +03:00

README.md

TIKeychainUtils

Set of helpers for Keychain classes. Bunch of CodableBackingStore from TIFoundationUtils and KeychainAccess. Implement

@propertyWrapper example

extension StorageKey {
    static var userProfileKey: StorageKey<UserProfile> {
        .init(rawValue: "userProfileKey")
    }
}

extension Bundle {
    var bundleId: String {
        Bundle.main.bundleIdentifier ?? .empty
    }
}

extension Keychain {
    static var defaultKeychain: Keychain {
        .init(service: Bundle.main.bundleId)
    }
}

final class ViewModel {
    @KeychainCodableBackingStore(key: .userProfileKey, codableKeyValueStorage: .defaultKeychain)

    private(set) var profile: UserProfile?
    
    func updateProfile(newProfile: UserProfile?) {
        profile = newProfile
    }
}