Попробуйте UIImageView
в UIScrollView
!
Чтобы обнаружить ваши прикосновения в UIImageView
, вам нужно переписать UIImageView
и установить UserInteractionEnabled
в YES
. Затем вы можете обрабатывать такие события, как touchesBegan
и touchesEnded
.
UIImageWithTouchControl.h
@interface UIImageWithTouchControl : UIImageView
UIImageWithTouchControl.m
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
}