我有一个图像视图。我在这样的图像视图中检测到触摸
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
int viewTag=[touch view].tag;
if ([[touch view] isKindOfClass:[UIImageView class]])
{
//My code
}
}
并触摸在图像视图上移动。每当我的触摸在特定时间移出图像视图时,我都需要一个警报视图。如何在触摸移动中从图像视图中检测到触摸?...