How do you add non-cell text to a UITableView? For example, on iPhone, in Settings > Sounds there is the text “The volume of the ringer and alerts can be adjusted using… etc”. This text is not a cell or section title, is in a different font than section titles and does not appear in a cell itself. So how do you add it?
How do you add non-cell text to a UITableView ? For example, on iPhone,
Share
It is possible they are using a custom view as a footer. In the
UITableViewDelegateProtocol Reference there is the method:You could create a custom view that has no background, and just contains the label with your text in it for that particular section.