ios TableView那些事(三十 三)静态TableView隐藏其中一个cell

@property (weak, nonatomic) IBOutlet UITableViewCell *hideCell;
self.daysCell.hide = YES;

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell* cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];

    if(cell == self.hideCell)

        return 0;

    return [super tableView:tableView heightForRowAtIndexPath:indexPath];
}

来源这里

你可能感兴趣的:(Ios,tableview)