I have a UITableView setup using RowHeight = UITableView.AutomaticDimension.
The cells in the table correctly resize to be a larger height when necessary,
but nothing i do has succeeded in making it start < 44, which is too tall for my purposes.
I have tried setting EstimatedRowHeight, but no matter how small i make it the cell is created at 44.
Has anyone succeeded in doing this? all the hits i find on the web are people trying to make their cells taller, not shorter.
Answers
There are some extra works need to do to make the cell height dynamic.
Check the detailed explanation : https://stackoverflow.com/a/18746930/8187800
A sample for Xamarin.iOS : https://github.com/kentcb/TableViewCellWithAutoLayout_dotNET
well, that is insanely complicated
it is also over 5 years old and predates quite a few improvements.
It seems like there really must be a better way.