嗨
,我有一个 UIScrollView
在这个滚动视图中,我添加了一个 UIImage、UILabel、UIButton。
我想检测 UIScrollView 内 UIImage 的双击。
-(void) touchesbegin:(NSSet *)touchs withEvent:(UIEvent *)event
{
if([[touches anyObject]view]==??)
{
//MyCode on double tap of UIImageView inside UIScrollView
}
}
我应该用什么代替??在 UIScrollView 中检测 UIImageView。
谢谢你的帮助。