OStack程序员社区-中国程序员成长平台

标题: ios - 获取 UIImageView 的位置 - iOS [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:29
标题: ios - 获取 UIImageView 的位置 - iOS

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

    image.frame = CGRectMake(image.center.x, image.center.y, image.frame.size.width, image.frame.size.height);

图像向下和向右移动。我相信这是因为它正在获取图像中心的 x 和 y 坐标,但是有没有办法获取左上角的坐标,这样上面的代码就不会移动图像?



Best Answer-推荐答案


如果要将棒的边框设置为图像的边框,最简单的方法如下:

stick.frame = image.frame;

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

stick.frame = CGRectMake(image.frame.origin.x, image.frame.origin.y, image.frame.size.width, image.frame.size.height);

关于ios - 获取 UIImageView 的位置 - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25634894/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4