ios - 设置包含动态单元格高度的 UITableView 的高度
<p><p>我已将 <code>UITableView</code> 放入 <code>UIScrollView</code> 现在我想将静态高度设置为 <code>tabelview</code> 并将 <code>contentSize</code> 设置为<code>ScrollView</code> 因为 <code>UITableView</code> 每次滚动 <code>tableview</code> 时都会调用 <code>cellForRowAtIndexPath</code>。</p>
<p>我正在使用下面的代码动态设置 <code>tableviewcell</code> 大小。</p>
<p>现在的问题是:如何以及在何处将总高度设置为 <code>tableview</code> 并将内容大小设置为我的 <code>scrollview</code>?</p>
<pre><code>-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSMutableDictionary *itemDataDic = ;
UIFont *cellFont = ;
CGSize constraintSize = CGSizeMake(275.0f, MAXFLOAT);
CGSize labelSize = [ sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:NSLineBreakByWordWrapping];
if (labelSize.height > 30.00f)
{
totalHeight = totalHeight + 325;
return 325;
}
else
{
totalHeight = totalHeight + 306;
return 306;
}
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>'heightForRowAtIndexPath'为一个单元格调用了很多次,因此totalHeight计算错误。</p>
<p>您需要在初始化时计算表格的高度以及数据何时更改。</p>
<pre><code>-(void) reloadAndResizeTable
{
CGFloat totalHeight = .0f;
for (NSMutableDictionary* itemDataDic in resultArray) {
UIFont *cellFont = ;
CGSize constraintSize = CGSizeMake(275.0f, MAXFLOAT);
CGSize labelSize = [ sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:NSLineBreakByWordWrapping];
if (labelSize.height > 30.00f)
{
totalHeight = totalHeight + 325.0f;
return 325;
}
else
{
totalHeight = totalHeight + 306.0f;
return 306;
}
}
CGRect frame = ;
;
;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 设置包含动态单元格高度的 UITableView 的高度,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34627490/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34627490/
</a>
</p>
页:
[1]