Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking to set up my cell heights dynamically based off of the value that you set the custom cell in Interface Builder. This did not work out so I have moved on and found this method in Apples docs that can be used to set the cell height - tableView:heightForRowAtIndexPath:

However I am not sure if I am using it correctly as none of my tableviewcells are adjusting their height they all stay the same standard size. This is the code I am using here.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Set cell height
    [self tableView:tableView heightForRowAtIndexPath:indexPath];

    // Configure the cell using custom cell
    [[NSBundle mainBundle] loadNibNamed:@"CustomcellA" owner:self options:nil];
    cell = customcellA; // customcellA getters and setters are set up in .h

    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 44;
}

any help would be greatly appreciated

share|improve this question
Why the downvote? – GeneralMike Oct 23 '12 at 17:51

3 Answers

up vote 5 down vote accepted

lets say the third cell is twice as height:

- (CGFloat)   tableView:(UITableView *)tableView
heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(indexPath.row == 2)
        return 88;
    return 44;
}

This method will be called by the tableView.

You shouldn't do this:

[self tableView:tableView heightForRowAtIndexPath:indexPath];

It is up to you, how you ensure, that the right cell's indexPath is identified for other sizes.

General Rule:
If you implement the method of a delegate protocol, you will never call it yourself. Only the object of the class, that has a delegate conforming to a protocol, will call the delegate methods.

share|improve this answer

heightForRowAtIndexPath will be called automatically and you need to return the custom height that you need. So rather than return 44 you will need to return a dynamic height based on your data or whatever you are basing your height on.

share|improve this answer

you can store the heights in a NSDictionary (indexes) something like the below

    [indexes setObject:[NSNumber numberWithFloat:44.0] forKey:[NSNumber numberWithInteger:0]];
    [indexes setObject:[NSNumber numberWithFloat:88.0] forKey:[NSNumber numberWithInteger:2]];

- (CGFloat)   tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSNumber *anIndex = [indexes objectForKey:[NSNumber numberWithInteger:indexPath.row]];
    return [anIndex floatValue];
}
share|improve this answer
indexPath.row is a NSInteger and not an object you can use as key. And variable names should never start with a capital letter. – Matthias Bauch May 16 '12 at 22:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.