We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm unable to read values from the Keychain when using the Swift compiler Optimization Level [Fastest -O], which is default for Release mode apps.
https://github.com/vandadnp/iOS-8-Swift-Programming-Cookbook/blob/master/chapter-security/Finding%20Values%20in%20the%20Keychain/Finding%20Values%20in%20the%20Keychain/AppDelegate.swift
Seems like these lines are the problem:
var returnedData: Unmanaged<AnyObject>? = nil let results = Int(SecItemCopyMatching(query, &returnedData))
Possible solution: http://stackoverflow.com/questions/24145838/querying-ios-keychain-using-swift
var returnedData: AnyObject? var results = withUnsafeMutablePointer(&returnedData) { SecItemCopyMatching(query, UnsafeMutablePointer($0)) }
The text was updated successfully, but these errors were encountered:
Hi there, what is the value in the results variable after you call the SecItemCopyMatching() function? Thanks.
results
SecItemCopyMatching()
Sorry, something went wrong.
It is an OSStatus object. Upon success its value will be equal to errSecSuccess
OSStatus
errSecSuccess
No branches or pull requests
I'm unable to read values from the Keychain when using the Swift compiler Optimization Level [Fastest -O], which is default for Release mode apps.
https://github.com/vandadnp/iOS-8-Swift-Programming-Cookbook/blob/master/chapter-security/Finding%20Values%20in%20the%20Keychain/Finding%20Values%20in%20the%20Keychain/AppDelegate.swift
Seems like these lines are the problem:
Possible solution:
http://stackoverflow.com/questions/24145838/querying-ios-keychain-using-swift
The text was updated successfully, but these errors were encountered: