seb
seb

Reputation: 1

How can I know when my UITextView is scrolled?

I'm wondering if it's possible to know when a user is scrolling a UITextView. If it is, how?

Upvotes: 0

Views: 37

Answers (1)

Stephen Darlington
Stephen Darlington

Reputation: 52565

Yes. UITextView is inherited from UIScrollView, so your delegate will be able to respond to events such as scrollViewDidScroll: and scrollViewDidZoom:. See the documentation for the full list.

Upvotes: 1

Related Questions