我正在尝试在我的应用程序中将 UIImageView 拖到 iPhone 屏幕上。
目前我设置的拖动功能很好,拖动图像确实可以在屏幕上移动它,问题是你不必拖动图像视图来移动它,你也可以拖动屏幕上的任何地方,它会移动图像。我是这个平台的新手,所以我真的无法考虑如何解决这个问题。我当前拖动图像的代码是:
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
CGPoint pt = [[touches anyObject] locationInView:pig];
startLocation = pt;
}
- (void) touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event {
CGPoint pt = [[touches anyObject] locationInView:pig];
CGRect frame = [pig frame];
frame.origin.x += pt.x - startLocation.x;
frame.origin.y += pt.y - startLocation.y;
[pig setFrame: frame];
}
任何帮助表示赞赏。顺便说一下猪是UIImageView。我还注意到,如果我将图像视图“猪”的用户交互设置为启用,则图像不再可以拖动,但是当它未设置为启用时它是。