Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以获得 a 的 X 坐标,当视图的缩放模式设置为时UIImage显示在 a中?UIImageViewCenter
UIImage
UIImageView
Center
图片以更好地说明我想要的内容:
这几乎是基本的数学:
CGFloat x = (imageView.frame.size.width - imageView.image.size.width) / 2;
我想不是。
但是有解决方案,您可以计算图像的高度和宽度,并据此计算中心位置(imageView.frame.size.width-image.size.width)/2和高度相同的东西。
(imageView.frame.size.width-image.size.width)/2
希望这可以解决您的问题。