如何在 React Native 中使用 textContentType 获取 iOS 的电子邮件自动完成建议?

Luk*_*ams 6 autocomplete autofill autosuggest ios react-native

RN 0.57.x 公开了 iOS 的textContentType,因此我应该能够让我们的应用程序在 TextInput 中建议用户的电子邮件。这使得初始体验更加顺畅,因为用户无需输入电子邮件地址来创建帐户。

但是,设置textContentType为“emailAddress”并且keyboardType“email-address”没有任何效果。

如何获取输入控件中建议的用户个人电子邮件地址?

Gia*_* P. 7

对于 iOS,除了将textContentType prop 添加到<TextInput>RN 组件之外,您还需要:

  • Associated Domains在您的 Xcode 项目中添加权利
  • 在您的网站上添加 Apple App Site Association 文件 ( apple-app-site-association)

请参阅这篇博文:

和苹果文档: