第二章、React-Nativeライフサイクル
componentWillMount{
// , DOM
}
componentDidMount(){
// , DOM 。 , jQuery 。
}
componentWillReceiveProps(){
// , props , 。
}
shouldComponentUpdate(){
// , props state 。
}
componentWillUpdate(){
// , 。
}
componentDidUpdate(){
// , 。
}
componentWillUnmount(){
// 。
}