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 have enabled keychain sharing in Xcode for both projects (Mac and iOS apps) using the same "Keychain groups" string.
I try to access a keychain item that I write in my iOS app from within my Mac app.
Writing:
UICKeyChainStore *keychain = [UICKeyChainStore keyChainStoreWithService:@"SendSecretToMac"]; keychain.synchronizable = YES; keychain[@"kishikawakatsumi"] = @"01234567-89ab-cdef-0123-456789abcdef";
Reading:
UICKeyChainStore *keychain2 = [UICKeyChainStore keyChainStoreWithService:@"SendSecretToMac"]; keychain2.synchronizable = YES; NSString *secret = keychain2[@"kishikawakatsumi"];
However, the string "secret" is always nil. What can I do about this?
The text was updated successfully, but these errors were encountered:
I have the same issue, between the iOS app and Watch App. have you found any workaround?
Sorry, something went wrong.
No branches or pull requests
I have enabled keychain sharing in Xcode for both projects (Mac and iOS apps) using the same "Keychain groups" string.
I try to access a keychain item that I write in my iOS app from within my Mac app.
Writing:
Reading:
However, the string "secret" is always nil. What can I do about this?
The text was updated successfully, but these errors were encountered: