I want to add the default iOS footer to the tablesection in the tableview in Xamarin Forms. How can I go about doing this? I assume a customer renderer but I'm only reading that this can be done for Tableview?
To show an example, the following image is from Xcode storyboards when I enter the footer text on a static cell.
A Custom renderer is right, but you will have to use a custom renderer for the entire
TableView
. From there, you will need to override theTableViewModelRenderer
and then theGetViewForFooter
method in thatModelRenderer
. Here's something that might help get you started:As mentioned in my comments below, you can alternatively override other methods in your
TableViewModelRenderer
: