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(@"x origin: %f\n", f2.origin.x);
NSLog(@"y origin: %f\n", f2.origin.y);
NSLog(@"height: %f\n", f2.size.height);
NSLog(@"width: %f\n", 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]