Actually I have a table view with options, but alongside I have a complicated scroll design. How could I go about implementing this scroller?
How to achieve this custom Scroll bar in IOS or something similar to it?
1.5k Views Asked by User1075 At
2
There are 2 best solutions below
0

You could probably use a customized UISlider
for this. When the value of the slider changes, you can adjust the scroll offset of the UITableView
next to it.
I wonder whether it is really necessary for your design to use this kind of element since it is not very intuitive (at least on iOS) to use a custom scrollbar. When you really have to use the custom scrollbar, I would go with a customized version of an UISlider
.
Create
UISlider
verticalSlider change method