我有一个 UIImageView 可以在我的屏幕上移动。但是,我想知道的是用户停止移动后 UIImageView 的中心点。我的 UIImageView 位于我的主视图内。
我试过使用:
CGPoint centerPoint = _imageView.center;
但不幸的是,无论我在屏幕上将 UIImageView 移动到哪里,这个值都保持不变。由于用户将在屏幕上移动 UIImageView,如何确定动态 UIImageView 的中心点?
我有一个 UIImageView 可以在我的屏幕上移动。但是,我想知道的是用户停止移动后 UIImageView 的中心点。我的 UIImageView 位于我的主视图内。
我试过使用:
CGPoint centerPoint = _imageView.center;
但不幸的是,无论我在屏幕上将 UIImageView 移动到哪里,这个值都保持不变。由于用户将在屏幕上移动 UIImageView,如何确定动态 UIImageView 的中心点?