我创建了一个scrollview
并将其添加到我的视图控制器类中。现在我有scrollview
中的项目。在触摸时我想将图像移动到主视图。我正在尝试使用touchesBegin
和touchesMoved
,但它无效。我该怎么办?
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"touch moved");
dummyDress.frame=CGRectMake(location.x, location.y , 80, 120);
}
答案 0 :(得分:0)
如果您想处理其中一个UIScrollView子视图中的触摸,最好阅读UIScrollView documentation中的概述部分。请参阅touchesShouldBegin:withEvent:inContentView:
,pagingEnabled
和delaysContentTouches
等。
答案 1 :(得分:0)
您是否在userInteractionEnabled = YES
实例上设置了UIImageView
?
UIImageView
和UILabel
会覆盖YES
基础实施的默认值UIView
,而是返回NO
。