Custom Cell Row Height setting in storyboard is not responding

后端 未结 18 1967
名媛妹妹
名媛妹妹 2020-11-30 16:54

I am trying to adjust the cell height for one of the cells on my table view. I am adjusting the size from the \"row height\" setting inside the \"size inspector\" of the cel

相关标签:
18条回答
  • 2020-11-30 17:19

    I think it is a bug.

    Try adjust height not by Utility inspector but by mouse drag on the storyboard directly.

    I solved this problem with this method.

    0 讨论(0)
  • 2020-11-30 17:21

    I have recently been wrestling with this. My issue was the solutions posted above using the heightForRowAtIndexPath: method would work for iOS 7.1 in the Simulator but then have completely screwed up results by simply switching to iOS 8.1.

    I began reading more about self-sizing cells (introduced in iOS 8, read here). It was apparent that the use of UITableViewAutomaticDimension would help in iOS 8. I tried using that technique and deleted the use of heightForRowAtIndexPath: and voila, it was working perfect in iOS 8 now. But then iOS 7 wasn't. What was I to do? I needed heightForRowAtIndexPath: for iOS 7 and not for iOS 8.

    Here is my solution (trimmed up for brevity's sake) which borrow's from the answer @JosephH posted above:

    - (void)viewDidLoad {
        [super viewDidLoad];
    
        self.tableView.estimatedRowHeight = 50.;
        self.tableView.rowHeight = UITableViewAutomaticDimension;
    
        // ...
    }
    
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) {
            return UITableViewAutomaticDimension;
    
        } else {
            NSString *cellIdentifier = [self reuseIdentifierForCellAtIndexPath:indexPath];
            static NSMutableDictionary *heightCache;
            if (!heightCache)
                heightCache = [[NSMutableDictionary alloc] init];
            NSNumber *cachedHeight = heightCache[cellIdentifier];
            if (cachedHeight)
                return cachedHeight.floatValue;
    
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        CGFloat height = cell.bounds.size.height;
        heightCache[cellIdentifier] = @(height);
        return height;
        }
    }
    
    - (NSString *)reuseIdentifierForCellAtIndexPath:(NSIndexPath *)indexPath {
        NSString * reuseIdentifier;
        switch (indexPath.row) {
            case 0:
                reuseIdentifier = EventTitleCellIdentifier;
                break;
            case 2:
                reuseIdentifier = EventDateTimeCellIdentifier;
                break;
            case 4:
                reuseIdentifier = EventContactsCellIdentifier;
                break;
            case 6:
                reuseIdentifier = EventLocationCellIdentifier;
                break;
            case 8:
                reuseIdentifier = NotesCellIdentifier;
                break;
            default:
                reuseIdentifier = SeparatorCellIdentifier;
                break;
        }
    
        return reuseIdentifier;
    }
    

    SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0") is actually from a set of macro definitions I am using which I found somewhere (very helpful). They are defined as:

    #define SYSTEM_VERSION_EQUAL_TO(v)                  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
    #define SYSTEM_VERSION_GREATER_THAN(v)              ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
    #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
    #define SYSTEM_VERSION_LESS_THAN(v)                 ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
    #define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v)     ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
    
    0 讨论(0)
  • 2020-11-30 17:22

    For dynamic cells, rowHeight set on the UITableView always overrides the individual cells' rowHeight.

    This behavior is, IMO, a bug. Anytime you have to manage your UI in two places it is prone to error. For example, if you change your cell size in the storyboard, you have to remember to change them in the heightForRowAtIndexPath: as well. Until Apple fixes the bug, the current best workaround is to override heightForRowAtIndexPath:, but use the actual prototype cells from the storyboard to determine the height rather than using magic numbers. Here's an example:

    - (CGFloat)tableView:(UITableView *)tableView 
               heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        /* In this example, there is a different cell for
           the top, middle and bottom rows of the tableView.
           Each type of cell has a different height.
           self.model contains the data for the tableview 
        */
        static NSString *CellIdentifier;
        if (indexPath.row == 0) 
            CellIdentifier = @"CellTop";
        else if (indexPath.row + 1 == [self.model count] )
            CellIdentifier = @"CellBottom";
        else
            CellIdentifier = @"CellMiddle";
    
        UITableViewCell *cell = 
                  [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
        return cell.bounds.size.height;
    }
    

    This will ensure any changes to your prototype cell heights will automatically be picked up at runtime and you only need to manage your UI in one place: the storyboard.

    0 讨论(0)
  • 2020-11-30 17:24

    If you want to set a static row height, you can do something like this:

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 120;
    }
    
    0 讨论(0)
  • 2020-11-30 17:24

    One other thing you can do is to go to your Document Outline, select the table view that your prototype cell is nested. Then on the Size Inspector, change your table view Row Height to your desired value and uncheck the Automatic box.

    0 讨论(0)
  • 2020-11-30 17:27

    For dynamic cells, rowHeight set on the UITableView always overrides the individual cells' rowHeight. Just calculate the dynamic height if the content inside the row.

    0 讨论(0)
提交回复
热议问题