如何在tableview中禁用第一部分?

时间:2013-06-15 03:25:19

标签: objective-c xcode uitableview

如何在“Home”上方摆脱第一节区域?

First section

1 个答案:

答案 0 :(得分:4)

试试这个:

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if (section == 0) {
    return nil;
}
}

或者这个:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
if (section == 0) {
    return 0;
}