rain-bason
rain-bason
I fixed this by changing the `accessible` option to `LocksmithAccessibleOption.afterFirstUnlock`
You can easily change it if you're using a _protocol based_ approached. While in my case I'm not using that approach. What I did is to create an extension as...
I encounter this also. What I notice is that the keychain that was stored using the "unlock" accessible option can't be access or delete when you change to "afterFirstUnlock" What...
I'm not sure how can I change your code, but here is part of my code: In a helper file: ``` private let accessible = LocksmithAccessibleOption.afterFirstUnlock private func loadData(forUsername username:...
I thought the required for CreateableSecureStorable is `data: [String : Any]` but Xcode requires me to add `createInSecureStore()` and `updateInSecureStore()` what should I do with these methods? No explanation on...