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

Apply new guidelines for UnsafeMutablePointer #82

Closed jrendel closed 7 years ago

jrendel commented 7 years ago

From previous pull request:

I've fixed Errors with SecItemCopyMatching with new guidelines for UnsafeMutablePointer.

let status = SecItemCopyMatching(keychainQueryDictionary as CFDictionary,&result)

This also requires changing result: Any? to AnyObject?

As far as I know this occurs 3 times throughout KeychainWrapper.swift

jrendel commented 7 years ago

Updated in develop branch.