我正在使用 heightForRowAtIndexPath: 方法返回 100 设置单元格的高度。但在 cellForRowAtIndexPath 方法中,单元格的框架高度始终为 44px。
以下是我的代码。
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
}
- (int) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
[cell setBackgroundColor:[UIColor redColor]];
[cell.contentView setBackgroundColor:[UIColor redColor]];
cell.textLabel.text = [NSString stringWithFormat:@"%d", indexPath.row];
NSLog(@"%f %f", cell.frame.size.height, cell.contentView.frame.size.height);
return cell;
}
NSLog 语句打印“44px 44px”。
我可以使用此语句获得正确的高度
CGFloat height = [tableView heightForRowAtIndexPath:indexPath];