In my app I've a UITextView inside an UIView. In the UITextView there are a lot of read-only text and my UIView it's large like the screen width, but the height can't contain all content in the UITextView.
The first idea I got is to create a gesture and to start an animation to increase the dimension of UIView when the gesture is starting. This is a good idea, but I want to do something better.
I wanted to create a stuff like the Notification Center: in notification center I tap on the system bar, move my finger down and I see the content of this view, I want to replicate this on my app. In other words I want to expand the dimension of my UIView by drag my finger on the display. Does anyone knows if there are a library or a solution to do this?
Thank you