Does the List in SwiftUI reuse cells similar to UITableView?

前端 未结 1 1251
清歌不尽
清歌不尽 2021-01-04 22:13

I am working on creating a dynamic list using SwiftUI. Does the SwiftUI List container reuse the cells similar to UITableView?

相关标签:
1条回答
  • 2021-01-04 23:09

    Yes, List is reusing its ListCoreCellHosts exactly like the way UITableView reuses its UITableViewCells.

    Reference:

    Investigating memory usage with Xcode shows that, when the number of the items is more than List could present at once, it just shows as much as it can and reuses them when they become occluded from the top or bottom of the list.

    By tracing a single cell memory address, you can see it is reused over and over. Another exciting tidbit is that ListCoreCellHost uses a hosting view that may refer to UIKit internally. (Not known well because it lacks documentation)

    0 讨论(0)
提交回复
热议问题