I have an iPad application with a uitableview on and a uitextview below it. I would like to allow the user to drag the boarder between the views to adjust their size the way most panels on desktop applications can be resized. Is there an easy way to do this on iOS? If not what would be the best way to customize the views to get this functionality?
Share
You would have to subclass your
UITextViewand register forTouches, with that you know where the user’s finger is, and you can adjust your frame based on that.The
UIResponderclass reference will give you more help.UIResponder Class Reference