我有这个代码来拖动一个 imageView:
在接触开始:
CGPoint point = [touch locationInView:self];
[imageView setCenter:point];
在 touchmoved:
CGPoint point = [touch locationInView:self];
[imageView setCenter:point];
此代码允许在我的手指下拥有 imageview 并将其从其中心移动。但我想要一些东西,让我不仅可以从 imageview 的中心拖动一个 imageview,还可以从 imageview 的另一个点拖动它......如果我触摸这个 imageView 就不能拖动它......你能帮我吗?