I have recently started learning ios app development.
I have a table, TableViewController
with custom cells defined in TableViewCell
.
Each cell has a title
as a UILabel
and few more labels
below it. Tapping the title
should expand the custom cell and show a list of entries which is defined in a UIView
named ShowDetailView
. However I want the ShowDetailView
to appear below the UILabel
and above the few more labels
.
I was able to append the view below the entire cell, however how can I achieve the above task. Any good examples/demos for the above situation would be highly appreciated.