我遇到的问题是ScrollViewClass是未定义的,但仅限于应用程序的一个位置,仅适用于react-native中的iOS版本。
ScrollView在应用程序的多个位置使用并且工作正常,但在应用程序的这一个特定部分,它会导致错误屏幕显示ScrollViewClass must not be undefined
<ScrollView style={styles.descriptionContainer}
contentContainerStyle={styles.descriptionContainerInner}>
{/* The description text */}
<Text style={styles.descriptionText}>
{this.state.description}
</Text>
</ScrollView>