1.利用 componentDidMount ,setParams
componentDidMount(){
this.props.navigation.setParams({ navigatePress:this.renderItem })
}
renderItem (){}
2.调用
static navigationOptions = ({navigation, screenProps}) => ({
headerTitle: '登录',
headerLeft:(
<TouchableOpacity onPress={()=>navigation.state.params.navigatePress()} >
</TouchableOpacity>
)
});