我在图像视图上显示 3 个图像。
我通过使用休闲代码获得图像位置。
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
// get touch event
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.view];
NSLog(@"%f %f",touchLocation.x,touchLocation.y);
在控制台中,我得到了图像位置。
现在我需要的是,当将 imageview 拖到 imageview2 上时,我需要在 imageview2 的位置交换 imageview2,在 imageview2 的位置交换 imageview。
谁能帮帮我吗。
提前谢谢你。