views:

17

answers:

1

I have a UILabel and a UISlider in my app and I have it hooked up in a way that when the user changes the value of the slider and then let's go, the UILabel gets updated with the new double value.

I need to know how to update the label as the user slides the slider and not only when they let go.

+1  A: 

Set the UISlider's continuous property to YES.

James Huddleston
hahaha wow! I can't believe it was that simple thank a lot, I got it to work.
cgossain
That's about as easy as answers get. Enjoy!
James Huddleston