Reputation: 1
I'm wondering if it's possible to know when a user is scrolling a UITextView
. If it is, how?
Upvotes: 0
Views: 37
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