Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UISlider setPopUpViewCornerRadius:]: unrecognized selector sent to instance 0xa44bef0'
Code:
self.slider1.maximumValue = 255.0;
self.slider1.popUpViewCornerRadius = 25.0;
[self.slider1 setMaxFractionDigitsDisplayed:0];
self.slider1.popUpViewColor = [UIColor colorWithHue:0.55 saturation:0.8 brightness:0.9 alpha:0.7];
self.slider1.font = [UIFont fontWithName:@"GillSans-Bold" size:22];
self.slider1.textColor = [UIColor colorWithHue:0.55 saturation:1.0 brightness:0.5 alpha:1];
Please guide me, Thanks in Advance

setPopUpViewCornerRadius()from anywhere? - RajeshUISlider. Perhaps you need to specify the actual class name in Interface Builder. - rmaddy