Add a password management app to the autofill list

Hello,


I'm developing a password management app, using Swift 5 and Xcode.

I want to add my app to the list of Autofill password menu on iPhone,

such as 1Password or Dashlane.

Could you please tell me how can I do that ?

I have no found a solution on the web.

Thank you.

Accepted Reply

The droid you’re looking for here is an AutoFill credential provider. I recommend that you watch WWDC 2018 Session 721 Implementing AutoFill Credential Provider Extensions, which is a good intro to the tech.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Replies

The droid you’re looking for here is an AutoFill credential provider. I recommend that you watch WWDC 2018 Session 721 Implementing AutoFill Credential Provider Extensions, which is a good intro to the tech.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Thank you for your answer.