views:

345

answers:

2

Is anyone aware of a version of the iPhone UISlider control with two thumbs? I need a control that will allow specifying a range of values. The UISlider API docs would imply this isn't possible with the standard control, so I was wondering if anyone had a solution for this (or had solved it themselves).

A: 

I'm not aware of a current one (ie. still in active development) but you could probably derive one by looking at the source of BWToolkit ( http://brandonwalkin.com/bwtoolkit/ ).

There's an iTunes style slider implementation you could probably extend.

It's BSD licensed and the source is available from bitbucket.

cp21yos
BWToolkit is for the Mac, not the iPhone.
Peter Hosey
A: 

Here's a range slider I just cooked up

http://github.com/cmezak/CMRangeSlider

CharlieMezak