Skip to content

Commit

Permalink
Merge pull request #65 from CevaComic/master
Browse files Browse the repository at this point in the history
Added handlePinchToZoomRecognizer
  • Loading branch information
RobertSasak authored Nov 21, 2019
2 parents 3d4f491 + d573bbf commit 9003ba4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ios/ALPRCamera.m
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,12 @@ - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

}

-(void) handlePinchToZoomRecognizer:(UIPinchGestureRecognizer*)pinchRecognizer {

if (pinchRecognizer.state == UIGestureRecognizerStateChanged) {
return;
}
}


@end

0 comments on commit 9003ba4

Please sign in to comment.