Yea, Jonathan’s recommendation is probably best. You would configure the
collection view to scroll horizontally and just vend cells that are the
numbers. You can probably configure UICollectionViewFlowLayout to do most of
the heavy lifting for you, and perhaps just do a subclass to override
tar
Have an example? Sounds interesting - but I need the control to work like a
UIScrollView in a way (the content can go off to the left and right and not
flow)
| visible |
| |
0 1 2 | 3 4 *5* 6 7 | 8 9
|
What you want is UICollectionView. Make the numbers your cells, and use
-targetContentOffset(forProposedContentOffset:, withScrollingVelocity:) to
provide the snapping behavior.
> On Sep 30, 2018, at 8:46 PM, Eric Dolecki wrote:
>
> I've been tasked with coming up with a few horizontal slider
I've been tasked with coming up with a few horizontal sliders that are really
sequential numbers with the selected value in the middle of the screen. They
want drag and release with inertia and also rubber banding on the ends. Values
snap into place. 0 1 2 3 4 5 ...
Does anyone have something l