views:

100

answers:

1

I have a settings bundle, working perfectly, that I would like to customize a bit. I have, among other things, a PSSliderSpecifier and a PSTitleValueSpecifier.

What I would like to do is change the value of the PSTitleValueSpecifier to show the current value of the slider, preferably updating every time the slider's value changes (Actually, what I'd like even more would be displaying the slider's value on the same row as the slider).

I know the settings bundle is rather strict about what you're allowed to do in it, but is there any way of doing this?

A: 

I don't know much about the Settings app stuff, but if you put the preferences in your own app and used a UISlider, it's very easy. Just add a UILabel next to it, and respond to the UISlider's valueChanged with a method that gets the UISlider's value and sets it as the text of the UILabel.

David Kanarek