菜鸟教程小白 发表于 2022-12-13 00:01:20

ios - 自动布局:UIImageView 和 UIButton 之间的区别


                                            <p><p>在屏幕截图中,您可以看到一个 <code>UIImageView</code> 和一个 <code>UIButton</code>(都使用相同的图像)。 <code>UIImageView</code> 的内容模式设置为<em>Scale to Fill</em>。 <code>UIButton</code> 使用相同的图像,但无论我将其 <em>Content Mode</em> 设置为什么,图像右侧总是有空白区域。我认为它的 <em>Intrinsic Content Size</em> 会默认为图像的大小,但显然不是这样。</p>

<p>指定按钮宽度应为其图像宽度的正确方法是什么? TIA</p>

<p> <a href="/image/Cdkgz.png" rel="noreferrer noopener nofollow"><img src="/image/Cdkgz.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>要使它们具有相同的缩放比例,请设置 UIButton 的 backgroundImage 属性而不是 image 属性。图像属性显示在标题旁边。 backgroundImage 属性将缩放整个边界,并且固有大小应与您的 UIImageView 匹配。希望这有助于并解决您的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 自动布局:UIImageView 和 UIButton 之间的区别,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/42493443/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/42493443/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 自动布局:UIImageView 和 UIButton 之间的区别