菜鸟教程小白 发表于 2022-12-13 01:29:49

ios - 获取 UIImageView 的位置 - iOS


                                            <p><p>所以我知道 image.center,但是当我做这样的事情时:</p>

<pre><code>    image.frame = CGRectMake(image.center.x, image.center.y, image.frame.size.width, image.frame.size.height);
</code></pre>

<p>图像向下和向右移动。我相信这是因为它正在获取图像中心的 x 和 y 坐标,但是有没有办法获取左上角的坐标,这样上面的代码就不会移动图像?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果要将棒的边框设置为图像的边框,最简单的方法如下:</p>

<pre><code>stick.frame = image.frame;
</code></pre>

<p>仅供引用,您最初寻找的是 frame.origin,它是一个包含 x 和 y 原点的 CGPoint:</p>

<pre><code>stick.frame = CGRectMake(image.frame.origin.x, image.frame.origin.y, image.frame.size.width, image.frame.size.height);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 获取 UIImageView 的位置 - iOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25634894/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25634894/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 获取 UIImageView 的位置 - iOS