gpt4 book ai didi

ios - react native 密码自动填充 ios 11

转载 作者:可可西里 更新时间:2023-11-01 04:40:50 27 4
gpt4 key购买 nike

我做了一些研究,但在撰写本文时,我找不到 React Native 应用与新的 iOS 11 密码自动填充系统集成的任何方式。

我们是否需要使用授权证书(如此处所述:Password AutoFill for iOS Apphttps://willowtreeapps.com/ideas/password-autofill-in-ios-11)

我不确定的部分是它如何与 React Native 集成?!

最佳答案

不幸的是,这需要 React Native 的 TextInput 来桥接原生 UITextContentType。好消息是,有一个开放的拉取请求将添加此功能:

https://github.com/facebook/react-native/pull/18526

合并后,您可以像这样支持密码自动填充:

<TextInput
value={this.state.username}
textContentType="username"
/>
<TextInput
value={this.state.password}
secureTextEntry={true}
textContentType="password"
/>

关于ios - react native 密码自动填充 ios 11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46760047/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com