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

时间:2019-06-10 11:23:21

标签: 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)
                }
            }
        }

0 个答案:

没有答案