列表视图确实很慢而且很慢

Nat*_*cks 5 ios swift swiftui

我正在将约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)
                }
            }
        }
Run Code Online (Sandbox Code Playgroud)