From the course: iOS 14 Development Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Using list views

Using list views

From the course: iOS 14 Development Essential Training

Start my 1-month free trial

Using list views

- [Instructor] Our next step is to take this data and put it inside of a list and display all of these titles in that list. So let's head over into our content view. So I'm using the jump bar to do that. So if I click right here where it says multiple views hover over that for a second and then choose content view, I'm just going to adjust the UI to get a little bit more space for my code and zoom out to 50% and that looks good and now in our content view we want to make a navigation view and a navigation view gives you that navigation bar on the top of the screen with a title like you see in the settings app and when you tap on an item it slides over to the next screen, et cetera. So to get one of those in code let's delete our text object here then create a navigation view. So it's camel case where we have a capital N for navigation capital V for view and then we put some curly braces.…

Contents