Looking for Master-Detail Tutorial

I'm trying to build a master-detail app that has a list of topics on the main view, and then up to a maximum of 10 details for each topic that show on the details view. This is all static text. I have watched many YouTube videos, but can't find one that addresses this specific case.


Also, is there a text based label or cell I can use in the detail view that expands automatically to hold the variable amount of text it is sent? All the container objects seem to have fixed heights so the text gets clipped.


I enjoy learning about all this, but have a long way to go. Thanks for your time.


Doug

Accepted Reply

You will have probably to define custom cells.


Here are 2 tutorials to help :

Creating custom cells

h ttps://www.raywenderlich.com/68112/video-tutorial-table-views-custom-cells

Resizing cells, dynamically:

h ttps://www.raywenderlich.com/129059/self-sizing-table-view-cells


And a lot of tutorials on table views…

h ttps://www.raywenderlich.com/tag/uitableview

Replies

You will have probably to define custom cells.


Here are 2 tutorials to help :

Creating custom cells

h ttps://www.raywenderlich.com/68112/video-tutorial-table-views-custom-cells

Resizing cells, dynamically:

h ttps://www.raywenderlich.com/129059/self-sizing-table-view-cells


And a lot of tutorials on table views…

h ttps://www.raywenderlich.com/tag/uitableview

Thanks a ton, Claude. I'll start digging through those tutorials right away.