如何使用UITouches移动CGRect?

时间:2012-08-28 06:47:49

标签: iphone objective-c ios

如何使用uitouches移动CGRect?如果有人有想法请解释。

if(areaSelected)
        return;
    UITouch *mytouch=[[touches allObjects] objectAtIndex:0];
    [myPath addLineToPoint:[mytouch locationInView:self]];

[self setNeedsDisplay];

2 个答案:

答案 0 :(得分:1)

根据我的理解,您需要将裁剪后的图像移动到一个地方到其他地方,这样您就需要在触摸内容中对其进行编码......

-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [[event allTouches] anyObject];
    CGPoint location = [touch locationInView:touch.view];
    cloud.center = location;
}

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    [self touchesBegan:touches withEvent:event];
}

这里的云是UIImageView,你可以把它作为裁剪图像......

 cloud.image=croppedImage;   //[you must assign this first...]

我希望它可以帮助你...

答案 1 :(得分:0)

您需要重置矩形的框架:

[cropRect setFrame:CGRectMake(<new x coordinate>, <new y coordinate>, width, height)]