我正在尝试将Flowlayout放入TableViewCell内容中。
一切正常,但我想根据FlowLayout高度设置动态行高。 使用下一个方法我们可以得到需要的大小。但是当我将其设置为不等于“44”的值时 - FlowLayout停止显示其内容。它仅适用于44像素。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 44.0;
}
;
通过情节提要更改行高会产生相同的结果。那么是否可以控制嵌套FlowLayout的大小?
答案 0 :(得分:0)
cimgf.com上有一篇文章请参阅:http://www.cimgf.com/2009/09/23/uitableviewcell-dynamic-height/