菜鸟教程小白 发表于 2022-12-13 03:39:22

ios - TableView 高度在点击或弹回时更改


                                            <p><p>我有一个加载 3 个自定义单元格的表格 View 。 1个自定义单元格中有一个<code>ImageView</code>,它似乎是<strong>点击任何单元格时表格 View 移动</strong>的罪魁祸首。</p>

<p>这是我尝试过的,但没有成功。</p>

<p>如果我使用静态值(即 <code>return 180</code>),它工作得很好,但除了表格 View 跳转之外的任何东西。</p>

<p>有人知道为什么吗?谢谢!</p>

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    id model = self.Model;

    if (]) {
      ListTableViewCell *cellOne = ;
      if (!cellOne) {
            cellOne = [ init];

            FR *fD = (FR *)model;
            NSString *title = ;
            NSString *dateString = ;
            NSString *description = ;
            NSString *link = ;

            cellOne.labelHeadline.text = title;
            cellOne.labelDescription.text = description;
            cellOne.labelPublished.text = dateString;
      }

      // Make sure the cell&#39;s frame is updated
      ;
      ;

      CGFloat heightOne = .height;
      return heightOne + 2;

    } else if (]) {

    // more code
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>据我所知,这是一个错误。避免在点击单元格后立即跳表的解决方法是添加:</p>

<pre><code>;
</code></pre>

<p>在您的表格 View 中将消失</p>

<p> <a href="https://devforums.apple.com/message/1050163#1050163" rel="noreferrer noopener nofollow">https://devforums.apple.com/message/1050163#1050163</a> </p>

<p> <a href="https://devforums.apple.com/message/1042398#1042398" rel="noreferrer noopener nofollow">https://devforums.apple.com/message/1042398#1042398</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -TableView 高度在点击或弹回时更改,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27083952/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27083952/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - TableView 高度在点击或弹回时更改