Hey guys,
I've got a UISlider in my main view, but it doesn't receive touches at the right end. I thought it could be a pesky view covering it, but it definitely isn't. Has anyone got any other ideas?
Hey guys,
I've got a UISlider in my main view, but it doesn't receive touches at the right end. I thought it could be a pesky view covering it, but it definitely isn't. Has anyone got any other ideas?
I guess your UISlider
fell out of bounds of the superview. Try to set background of UISlider
superview to some color and check it out.
Its in your control to set the height and width of UISlider, using CGRectMake... and its touch sensitive till the given width.. i think u would have missed writing the below option...
silder_Obj.userInteractionEnable = YES;
Just try it out.. it had worked for me.