< How to show different images and other views in light or dark mode | How to create a list of static items > |
Updated for Xcode 14.2
SwiftUI’s List
view is similar to UITableView
in that it can show static or dynamic table view cells based on your needs. However, it is significantly simpler to use: we don’t need to create prototype cells in storyboards, or register them in code; we don’t need to tell it how many rows there are; we don’t need to dequeue and configure cells by hand, and more.
Instead, SwiftUI’s lists are designed for composability – designed to be able to build bigger things from smaller things. So, rather than having one large view controller that configures cells by hand, SwiftUI has us build small views that know how to configure themselves as list rows, then uses those.
In terms of code size if nothing else, the difference is staggering – you can delete almost all your table view code and still get the same great look and feel you’re used to.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.