我试图在大 self.view 中居中 UIImageView 并使用:
CGPoint point;
point.x = self.view.center.x;
工作正常,它水平对齐。然而,
self.view.center.y;
iPhone模拟器的值为250,当图像在视觉上位于中心时
self.view.center.y = 230
不是250。
视图的中心值怎么会偏离?
编辑:
我还应该提到我已经尝试设置框架,但我遇到了同样的问题。我的图像视图的中心最终是 250 而不是 230,它在视觉上仍然关闭。