我正在将约500行数据加载到List
中。当我有10行时还可以,但是现在我有500行,这非常慢。我可以做些什么来改善它的性能吗?
List {
SegmentedControl(selection: $feedType) {
ForEach(FeedType.allCases.identified(by: \.self)) { type in
Text(type.rawValue)
}
}
ForEach(store.stories) { story in
NavigationButton(destination: Text("")) {
StoryRow(story: story)
}
}
}