Question:
With the newSwiftUI
update in iOS 16 List
no longer depends on UITableView
. So the following snippet we used to set the List
background color to .clear
is now useless:introspect
to solve the problem, but does anyone know of another maybe cleaner way to achieve the same behavior?Also note that on
macOS
, the following works fine (Tested using Xcode 14 beta
& macOS Ventura
):Answer:
iOS 16
Now they use
UICollectionView
for backend, so an updated workaround is to change corresponding background colors:
Main part:
If you have better answer, please add a comment about this, thank you!