我有一个应用程序,可以将多个 UIImages 添加到视图中。然后可以在屏幕上拖动这些图像。如何检查已拖动哪个图像,然后将该图像的坐标保存到文件中,并且在同一视图中没有其他 UIImage。如果可能的话,我需要一种标记每个 UIImage 的方法,以将它们分开并单独识别它们。希望这是有道理的!
这就是我将每个 UIImage 添加到视图的方式:
CGRect imageFrame = CGRectMake(activeView.center.x - 50, activeView.center.y - 50, 200, 200);
imageResizableView = [[SPUserResizableView alloc] initWithFrame:imageFrame];
UIImage *image = [UIImage imageNamed:@"galaxy.jpg"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
imageResizableView.contentView = imageView;
imageResizableView.delegate = self;
[activeView addSubview:imageResizableView];