什么时候显示提示"Would you like to save this password in your iCloud Keychain"?
When does display the prompt that is "Would you like to save this password in your iCloud Keychain"?
什么时候显示提示“是否要将此密码保存在您的 iCloud 钥匙串中”??
我正在实施钥匙串逻辑来保存密码。
但是,在为应用程序密码创建钥匙串时不会显示此提示。
我需要使用另一个 kSecClass Item 吗?
enter image description here
您可以找到保存钥匙串密码的文档here
func SecAddSharedWebCredential(_ fqdn: CFString,
_ account: CFString,
_ password: CFString?,
_ completionHandler: @escaping (CFError?) -> Void)
- fqdn: 需要密码的网站域名。
- account:与此密码关联的帐户名。
- password:要存储的密码。传递 NULL 以删除共享密码(如果存在)。
- completionHandler:函数完成时调用的块。
什么时候显示提示“是否要将此密码保存在您的 iCloud 钥匙串中”??
我正在实施钥匙串逻辑来保存密码。 但是,在为应用程序密码创建钥匙串时不会显示此提示。 我需要使用另一个 kSecClass Item 吗?
enter image description here
您可以找到保存钥匙串密码的文档here
func SecAddSharedWebCredential(_ fqdn: CFString,
_ account: CFString,
_ password: CFString?,
_ completionHandler: @escaping (CFError?) -> Void)
- fqdn: 需要密码的网站域名。
- account:与此密码关联的帐户名。
- password:要存储的密码。传递 NULL 以删除共享密码(如果存在)。
- completionHandler:函数完成时调用的块。