jrendel / SwiftKeychainWrapper

A simple wrapper for the iOS Keychain to allow you to use it in a similar fashion to User Defaults. Written in Swift.
MIT License
1.59k stars 339 forks source link

Fix Readme.md : remove -> removeObject #94

Closed nickeyzzz closed 7 years ago

nickeyzzz commented 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 :)

jrendel commented 7 years ago

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.