How I can do this ? Adding exaplanations between sections (of cells)
I want to add explanation between cells.
I'm experimenting with sections, trying to make the cell opaque, without borders, ... but sure it exists a better approach ...
开发者_JAVA百科thanks,
m.
The UITableViewDataSource
protocol has two methods of use to you
- tableView:titleForHeaderInSection:
– tableView:titleForFooterInSection:
You can use these to add headers and footers around each section to provide description text.
In UITableViewDelegate
you can also modify the views for the headers and footers with
– tableView:viewForHeaderInSection:
– tableView:viewForFooterInSection:
Implement this method in your UITableViewDataSource object
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
It allows you to pass back a UIView to be displayed in the header for any given section.
精彩评论