<TouchableOpacity style= {myStyle.touchableStyle} >
<CardSection style={myStyle.cardStyle} onPress= {this.actionPressed} >
<Icon name={this.props.iconFirst} size={30} color="#000" />
</CardSection>
</TouchableOpacity>
这是我的可触摸不透明度,我在CardSection上使用过onPress,这是我自定义的组件。现在,我想在每按CardSection时打印一次Icon的名称。 iconName作为iconFirst道具从父组件传递。有什么办法可以在不使用onPress on Icon的情况下访问Icon名称吗?