ComponentWillMount only trigger for first time?
问题 MainComponent: <Tabs initialPage={this.props.day} tabBarUnderlineStyle={{ backgroundColor: '#5AF158' }} renderTabBar={() => <ScrollableTab />}> {this.renderTabHeader()} </Tabs> renderTabHeader() { return ( this.props.dateArray.map((date, i) => <Tab key={i} heading={date.format('DD/MM')} tabStyle={styles.tabStyling} activeTabStyle={styles.activeTabStyle} textStyle={styles.tabTextStyle} activeTextStyle={styles.activeTabTextStyle} > <View style={{ backgroundColor: '#EEEEEE', flex: 1 }}> <Content