I have a label that is controlled for a UISlider. When I get half way with the slider it shows .50. How can I change that .50 to 50%? Thanks so much!
My slider code:
- (IBAction) sliderValueChanged:(UISlider *)sender {
tipPercentLabel.text = [NSString stringWithFormat:@" %.2f", [sender value]];
}