菜鸟教程小白 发表于 2022-12-13 03:57:44

ios - Storyboard中的自定义 tableViewCell 在 iOS8.1 中失去了自动布局约束


                                            <p><p>问题是我可以得到我的自定义 <code>UITableViewCell</code>(自定义背景颜色已更改),
但其中的约束都丢失了。</p>

<p>ps。我正在使用 Xcode 6.1.1。</p>

<p>我想得到正确的高度值,但约束都丢失了。</p>

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

      static HomeMainNewsCell *mainCell = nil;

      static dispatch_once_t onceToken;
      dispatch_once(&amp;onceToken, ^{
            mainCell = ;
      });
      ;
      ;

      CGFloat height = .height;
      return height;
}
</code></pre>

<p>这是日志</p>

<pre><code> po
&lt;__NSArrayM 0x7fe05b745c10&gt;(

)
</code></pre>

<p>这是 Storyboard截图</p>

<p> <img src="/image/6YjpE.png" alt="enter image description here"/> </p>

<p>添加信息</p>

<p>删除heightForRowAtIndexPath方法后,iOS8.1显示完美。</p>

<p>但在 iOS7.1 中,它显示为每个单元格的高度值为 44。并且约束都回来了。</p>

<pre><code>po
&lt;__NSArrayM 0x78e50f20&gt;(
&lt;NSLayoutConstraint:0x78e52a10 UILabel:0x78e524d0.trailing == UITableViewCellContentView:0x78e52230.trailing - 8&gt;,
&lt;NSLayoutConstraint:0x78e52a40 V:-(17)-|   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;,
&lt;NSLayoutConstraint:0x78e52a70 H:|-(8)-   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;,
&lt;NSLayoutConstraint:0x78e52aa0 V:-(9)-&gt;,
&lt;NSLayoutConstraint:0x78e52ad0 UILabel:0x78e52380.trailing == UITableViewCellContentView:0x78e52230.trailing - 8&gt;,
&lt;NSLayoutConstraint:0x78e52b00 V:-(9)-&gt;,
&lt;NSLayoutConstraint:0x78e52b30 H:|-(8)-   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;,
&lt;NSLayoutConstraint:0x78e52b60 H:|-(0)-   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;,
&lt;NSLayoutConstraint:0x78e52b90 H:-(0)-|   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;,
&lt;NSLayoutConstraint:0x78e52bc0 V:|-(0)-   (Names: &#39;|&#39;:UITableViewCellContentView:0x78e52230 )&gt;
)
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>最后,我找到了一个完美的解决方案。</p>

<p>这个问题的原因是在 iOS8 中使用 <code>tableView.rowHeight = UITableViewAutomaticDimension</code> 和自动布局,它比以前工作得更好。</p>

<p>解决方案的帖子来自这里。 </p>

<p> <a href="http://www.raywenderlich.com/forums/viewtopic.php?f=2&amp;t=18517" rel="noreferrer noopener nofollow">http://www.raywenderlich.com/forums/viewtopic.php?f=2&amp;t=18517</a> </p>

<p>这个解决方案太酷了~~感谢人们对这个问题的评论。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -Storyboard中的自定义 tableViewCell 在 iOS8.1 中失去了自动布局约束,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27438253/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27438253/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Storyboard中的自定义 tableViewCell 在 iOS8.1 中失去了自动布局约束