我想专注于TextInput并通过按下按钮弹出键盘。但它没有工作。那怎么解决呢? 这是我的代码。
<TextInput ref="myInput" />
<Text onPress={()=> this.refs["myInput"].focus()>custom</Text>
答案 0 :(得分:1)
替换此行:
<Text onPress={()=> { this.refs.myInput.focus();} }>custom</Text>
您尚未关闭}
大括号和语法问题