Best Structure for multiple TableViews

Hey,

I have multiple TableViews. Here a link how it should looks like: https://ibb.co/JqQr1zQ

I get the data from a smb server

I want to to have multiple stages.
Now my question is, what would be the best structure for this? How do I create this?

Thank you for you help.


Regars,
Tell

Replies

You should create 3 TableViewControllers.

Embed first VC in a navigation (because you need to be able to return from lower level).

Organize data in Core Data or similar. They will be used as Table views data sources


In each table, when you select a cell, you segue to the next VC passing the selected data.

In the next VC, you select the data related to this top selection for populating the data source.


Hope that helps.