I have an 3 uiscrollviews like myscroll1, myscroll2, myscroll3..etc..,which i have added as subviews in my view class, each one positioned one below one. Like,
Here i need to scroll all the scroll views parllely, i.e if i touch and scroll any scrollview all the scrollview has to be scrolled. is it possible.?
I have an 3 uiscrollviews like myscroll1, myscroll2, myscroll3..etc..,which i have added as subviews
Share
Set up delegates for your scroll views and implement
scrollViewDidScroll:to update the content offset of the other scroll views.