cgossain
cgossain

Reputation: 199

How can I update a UILabel as I slide my UISlider

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.

Upvotes: 1

Views: 467

Answers (1)

James Huddleston
James Huddleston

Reputation: 8448

Set the UISlider's continuous property to YES.

Upvotes: 2

Related Questions