将图像从scrollView移动到View

时间:2011-05-10 12:19:25

标签: iphone

我创建了一个scrollview并将其添加到我的视图控制器类中。现在我有scrollview中的项目。在触摸时我想将图像移动到主视图。我正在尝试使用touchesBegintouchesMoved,但它无效。我该怎么办?

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    NSLog(@"touch moved");
    dummyDress.frame=CGRectMake(location.x, location.y , 80, 120);
}

2 个答案:

答案 0 :(得分:0)

如果您想处理其中一个UIScrollView子视图中的触摸,最好阅读UIScrollView documentation中的概述部分。请参阅touchesShouldBegin:withEvent:inContentView:pagingEnableddelaysContentTouches等。

答案 1 :(得分:0)

您是否在userInteractionEnabled = YES实例上设置了UIImageView

UIImageViewUILabel会覆盖YES基础实施的默认值UIView,而是返回NO