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