我想看看您的cellForRowAtIndexPath
方法来了解您如何检索标签的文本。
您在呼叫方面处于正确的轨道上,sizeWithFont
但您需要两件事才能成功确定这一点:
- 标签的字体大小(您在 13.0 中硬编码)
- 以及确定大小的文本(您试图从 UILabel 中提取)
(在 13.0 的代码中硬编码字体大小不一定是个好主意,因为如果你想为单元格更改它,你需要记住在 heightForRowAtIndexPath 和其他任何地方更改它,但这是一个不同的问题) .
与其从标签本身中提取文本,不如UILabel
从您拥有的任何数据结构中确定文本,这些数据结构首先生成/包含文本。这就是为什么查看您的cellForRowAtIndexPath
方法会有所帮助的原因。
不要cellForRowAtIndexPath
从heightForRowAtIndexPath
任何一个调用,这些方法不打算以这种方式使用。
这是一个简单的示例,我可以在您发布cellForRowAtIndexPath
代码时对其进行改进:
//ASSUME that self.arrayOfStrings is your data structure where you are retrieving the label's text for each row.
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
int rowHeight =0.0f;
NSString *stringToSize = [self.arrayOfStrings objectAtIndexPath:indexPath.row];
CGSize size = [stringToSize sizeWithFont:[UIFont systemFontOfSize:13.0f] constrainedToSize:CGSizeMake(300, 5000) lineBreakMode:UILineBreakModeWordWrap];
rowHeight = size.height+10;
return rowHeight;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [self.arrayOfStrings objectAtIndexPath:indexPath.row];
return cell;
}