菜鸟教程小白 发表于 2022-12-13 02:42:26

ios - Xcode6 Interface Builder约束不拉伸(stretch) subview


                                            <p><p>Xcode Interface Builder 快把我逼疯了,我一天中的大部分时间都在谷歌上搜索解决方案。</p>

<p>我有一个包含 UIImageView 的 CollectionViewCellStoryboard。 CollectionViewCell 大小为 125 x 125 并选中 Autoresize subviews。</p>

<p>UIImageView 对其父 View 有 4 个约束(前导、尾随、顶部、底部),均设置为 0。这应确保 UIImageView 的大小可以填充父 View 。当 CollectionViewCell 缩小到较小的尺寸时,UIImageView 的尺寸正确,但当 CollectionViewCell 拉伸(stretch)到较大的尺寸时,它不起作用。</p>

<p>编辑:我已经尝试使用 UILabelsubview 进行相同的操作,并且发生了同样的事情。</p>

<p>这是一个已知问题还是有什么方法可以调试约束?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我终于从 <a href="http://www.nomtek.com/adjusting-your-app-to-ios-8/" rel="noreferrer noopener nofollow">http://www.nomtek.com/adjusting-your-app-to-ios-8/</a> 中找到了问题的完整解决方案</p>

<p>首先,我必须确保我的 CollectionViewCell 在 Interface Builder 中检查了 Autoresize Subviews,然后我必须在 ConnectionViewCell 子类中添加以下 awakeFromNib 方法。</p>

<pre><code>- (void)awakeFromNib {

    ;

    self.contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
}
</code></pre>

<p>有了这两件事,即使使用 sizeForItemAtIndexPath 动态调整单元格大小,我的单元格(UIImageView 和 UILabel)的内容也会正确拉伸(stretch)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Xcode6 Interface Builder约束不拉伸(stretch) subview ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26403018/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26403018/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Xcode6 Interface Builder约束不拉伸(stretch) subview