0

我有一个 UIImageView 可以在我的屏幕上移动。但是,我想知道的是用户停止移动后 UIImageView 的中心点。我的 UIImageView 位于我的主视图内。

我试过使用:

CGPoint centerPoint = _imageView.center;

但不幸的是,无论我在屏幕上将 UIImageView 移动到哪里,这个值都保持不变。由于用户将在屏幕上移动 UIImageView,如何确定动态 UIImageView 的中心点?

4

1 回答 1

0

你可以做

CGRect frame = _imageView.frame;

然后对 x 坐标、y 坐标、高度和宽度进行一些数学运算,以获得相对于主视图的中心。

于 2013-06-27T15:42:58.393 回答