0

我正在为 iOS 开发一个绘图应用程序。

我已经创建了一个图像列表,当用户点击将选择的任何图像时,我还获得了所选图像的标签值。

选择后我想用手指在屏幕上移动图像,我已经成功完成了这个过程,但是当我想应用标签时,我不会通过触摸获得图像的标签值。我用于移动图像的代码如下。在这个视图数组中是我在屏幕上选择的图像数组。

CGPoint firstTouch = [touch locationInView:selectedPerson_ImageView];
for (UIImageView *view in viewArray) {
    if (CGRectContainsPoint(view.frame, firstTouch)) 
    {
        toMove = view;
    }
}

如何获取要移动的图像的标签值?

4

1 回答 1

3

You can get the tag value of touch location view by using this

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
       UITouch *touch = [touches anyObject];
       int viewTag=[touch view].tag;
} 
于 2013-03-04T18:38:48.150 回答