iPhone Development:Customize a UISlider in iphone sdk

Want to make a custom UISlider like shown in below image. To made a  UISlider as shown in the figure, we can use given below code snippet CGRect frame = CGRectMake(174, 12.0, 120.0, 40); customSlider = [[UISlider alloc] initWithFrame:frame]; [customSlider addTarget:self action:@selector(sliderAction:) forControlEvents:UIControlEventValueChanged]; // in case the parent view draws with a custom color or […]

iPhone Development:Customize a UISlider in iphone sdk Read More »