落叶随风将要去何方

react native ios 系统输入法不能输入中文的解决办法

这里,这篇文章写的不错,我就是记录一下

class MyTextInput extends Component {
  shouldComponentUpdate(nextProps){

    return Platform.OS !== 'ios' || (this.props.value === nextProps.value &&  
           (nextProps.defaultValue == undefined || nextProps.defaultValue == '' )) || 
           (this.props.defaultValue === nextProps.defaultValue &&  (nextProps.value == undefined || nextProps.value == '' ));
  
  }

  render() {
    return <TextInput {...this.props} />;
  }
};
 

  

 
posted @ 2018-09-12 09:53  木子飞2  阅读(719)  评论(0编辑  收藏  举报

只留给天空美丽一场