Closed nickeyzzz closed 7 years ago
let removeSuccessful: Bool = KeychainWrapper.standard.remove(key: "myKey")
should be
let removeSuccessful: Bool = KeychainWrapper.standard.removeObject(forKey: "myKey")
if I understood it the right way :)
Updated in dev branch. I'm trying to find time to get to a few of these outstanding issues and will push a new version to CocoaPods when I can.
let removeSuccessful: Bool = KeychainWrapper.standard.remove(key: "myKey")
should be
let removeSuccessful: Bool = KeychainWrapper.standard.removeObject(forKey: "myKey")
if I understood it the right way :)