IOS中的本机应用程序输入建议

时间:2018-07-27 07:23:06

标签: ios react-native

我正在尝试使用react-native创建具有注册表单的应用。一旦TextInput成为焦点,是否有办法获取系统的详细信息(例如手机所有者的名字和姓氏)作为输入建议?

我尝试使用textContentType =“ givenName”作为TextInput的属性,但无法正常工作。

<TextInput
    autoCapitalize={'none'}
    autoCorrect={false}
    autoFocus={false}
    defaultValue={null}
    placeholder={'First Name*'}
    returnKeyType={'done'}
    textContentType={"givenName"}
    underlineColorAndroid={'transparent'}
    value={this.state.fname_val}
/>

0 个答案:

没有答案