拖动图像并在触摸时调整它们的大小(iPhone)

时间:2012-05-14 08:34:49

标签: iphone ios drag-and-drop drawing

我正在创建一个应用程序,当用户点击任何对象时,当用户点击UIView时,那些图像应该放在视图上,并且在任何方向上拖动该图像时应该重新调整大小。 任何有任何想法的人,请告诉我。 或者我可以获得任何示例代码吗?

由于

1 个答案:

答案 0 :(得分:0)

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event

{

UITouch *touch = [[event allTouches] anyObject];

CGPoint touchLocation = [touch locationInView:self.view];

if ([touch view] == photo) {

photo.center = touchLocation;

}

else if ([touch view] == photo1) {

    photo1.center = touchLocation;

}

}

或者您可以在该链接http://www.roseindia.net/tutorial/iphone/examples/iphone-DoubleImageMoveasd.html

中看到