地址单元格需要可变高度。
在viewWillAppear
中,我绘制一个测试单元以捕获ivar中的标签高度。
在委托方法tableView:heightForRowAtIndexPath
中,我使用ivar设置实际地址单元格的高度。
代码:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
UITableViewCell *testCell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:@"addressCell"] autorelease];
testCell.textLabel.text = @"Address";
testCell.detailTextLabel.text = [selectedPatient valueForKey:@"address"];
testCell.selectionStyle = UITableViewCellSelectionStyleNone;
testCell.detailTextLabel.lineBreakMode = UILineBreakModeWordWrap;
testCell.frame = CGRectMake(0,0,100,30);
[testCell addSubview:testCell.detailTextLabel];
[testCell sizeToFit];
CGSize maxSize;
// HERE is where the problem occurs
// maxSize.width is 35 when it should be 200
maxSize.width = testCell.detailTextLabel.frame.size.width;
//
maxSize.height = 500;
UIFont *font = testCell.detailTextLabel.font;
CGSize testSize = [[selectedPatient valueForKey:@"address"] sizeWithFont:font constrainedToSize:maxSize lineBreakMode:UILineBreakModeWordWrap];
addressLabelHeight = testSize.height;
[testCell removeFromSuperview];
}
获得测试单元的宽度是个问题。当NSLog'ing cellForRowAtIndexPath:
显示宽度为200时,但我的testCell的宽度仅为35.这会导致高度太大,显示一个单元格的空白区域太多。
我通过设置maxSize.width = 200
解决了问题,但我很好奇我错误地获取了detailLabel的宽度动态?
答案 0 :(得分:2)
maxSize.width
将是文本的宽度。您从@"address"
获得的文字是什么?我打赌这大约是35分。
// This is legal, but a strange size
testCell.frame = CGRectMake(0,0,100,30);
// This is redundant I believe
[testCell addSubview:testCell.detailTextLabel];
// Does this help you at all?
[testCell sizeToFit];
在tableView:willDisplayCell:atIndexPath:
之前,您无法真正信任单元格的宽度。这就是你想要做任何最终布局的地方。为了您的目的,您应该选择您想要的地址范围(如果您愿意,可以选择200个点),然后将其强制为宽度而不是询问它有多大。