Vignesh
Vignesh

Reputation: 79

Implementing pinch to zoom(as present in UIWebView) in iOS

I would like to implement simple, zoom-in-out Functionality in my iOS app which has UITextViews present in a TableView. I am expecting a behaviour something similar to the Apple pages app(Document zoom).

How to achieve such an effect?

Upvotes: 0

Views: 155

Answers (2)

AndrewShmig
AndrewShmig

Reputation: 4923

UIGestureRecognizer will solve your problem.

Upvotes: 1

santibernaldo
santibernaldo

Reputation: 835

You could use UIPinchGestureRecognizer & UIGestureRecognizerDelegate together

Upvotes: 0

Related Questions