From the course: Learning Apple tvOS App Development

Unlock the full course today

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

UISplitViewController in action

UISplitViewController in action

From the course: Learning Apple tvOS App Development

Start my 1-month free trial

UISplitViewController in action

- [Instructor] In the current state of our second tab, the city search, we can already display different dates for which we have weather forecast data available, but what we cannot do yet is selecting one of those dates and display information. And if you remember, when we create the user interface we set up a split view controller which is great because we can display information side-by-side here from two different view controllers. On the left side we have a master view controller which is a table view controller, and if we click with a TV remote on one of the cells, we are triggering a segue from the table view cell to our right detail view controller that displays the information. So this is pretty great, pretty simple component here, the split view controller, and our mission now is to make this data transfer happen and also to display the information in our detail view controller. And the way to do that is first of all having a look at the search table view controller and if…

Contents