tableViewHeaderInSection
2021-02-22 本文已影响0人
清风明月伴我行
1) - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {}
要求委托提供一个视图对象以显示在表视图的指定部分的标题中。
2) - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {}
Asks the data source for the title of the header of the specified section of the table view.
3) - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {}
向委托人询问要用于特定节的标题的高度。
###使用此方法指定自定义section header视图的高度。