ios - UITableView 单元格在调整大小后不响应输入
<p><p>我在表格 View 中添加新行并根据其内容调整其大小,但调整大小后,单元格内容,如按钮和 <code>didSelectRowAtIndexPath:</code> 没有被调用。</p >
<p>这是调整大小的代码:</p>
<pre><code>CGRect frame = cell.replayTableView.frame;
int height = (model.replyComments.count*61)+3;
frame.size = CGSizeMake(cell.replayTableView.frame.size.width, height);
cell.tableviewReplay.refTable.frame=frame;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在 heightForRowAtIndexPath 上分配一个高度</p>
<pre><code>-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.Row == 1)
return 50.0;
else if (indexPath.Row == 2)
return 60;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - UITableView 单元格在调整大小后不响应输入,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32837238/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32837238/
</a>
</p>
页:
[1]