我喜欢做的就是创建一个 UITableViewCell ,其布局只有两个元素,如下所示:
"Text that can have a flexible length
with mutliple lines..."
"one fix line directly follwing the above text"
所以基本上 1. 具有可变长度的灵活文本字段,如果需要,必须看到完整的文本以多行包裹 2. 紧随其后的一行
虽然我发现heightForRowAtIndexPath
它仍然无助于如何在这里进行第二个字段的布局......
-(void) layoutSubviews {
[super layoutSubviews];
[flexibleText setFrame:CGRectMake( 5.0, 5.0, 250.0, 40.0)]; //<- fexible height
[one_line setFrame:CGRectMake( 5.0, 42.0, 250.0, 20.0)]; //<- followed by this one liner
}