菜鸟教程小白 发表于 2022-12-13 11:28:24

ios - 如何获取 UIButtom 的框架或边界已在 Storyboard 上设置


                                            <p><p>我无法获取在 Storyboard 上设置的 <code>UIButtom</code> 的框架或边界。如下图所示,控制台只返回 0。那么如何获取框架或编码的界限? </p>

<p> <a href="/image/auomV.png" rel="noreferrer noopener nofollow"><img src="/image/auomV.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>CGRect f2 = yourButton.frame;
NSLog(@&#34;x origin: %f\n&#34;, f2.origin.x);
NSLog(@&#34;y origin: %f\n&#34;, f2.origin.y);
NSLog(@&#34;height: %f\n&#34;, f2.size.height);
NSLog(@&#34;width: %f\n&#34;, f2.size.width);
</code></pre>

<p>别忘了设置 IBOutlet。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何获取 UIButtom 的框架或边界已在 Storyboard 上设置,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33210292/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33210292/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何获取 UIButtom 的框架或边界已在 Storyboard 上设置