Touch Moved Method in our View Controller -(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { if (TouchEnable) { UITouch *touch = [touches anyObject]; CGPoint touchPoint = [touch locationInView:_img_view]; @autoreleasepool { double dx = fabs(BeginPoint.x – touchPoint.x); …