- 首页 > it技术 > >
iOS|iOS UITableView设置section之间的距离
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section == 0) {
return 0.1;
}
else if (section == 1)
{
return 0.1;
}
return 0.1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UITableViewHeaderFooterView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"header"];
if (header == nil) {
header = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:@"header"];
}
return header;
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UITableViewHeaderFooterView *footer = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"footer"];
if (footer == nil) {
footer = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:@"footer"];
}
return footer;
}
推荐阅读