Is there a way to call a selector for multiple UIControlEvents?
this doesn't work, but itl'll give u an idea of what i'm trying to do.
[self.slider addTarget:self action:@selector(sliderDidStopDragging:) forControlEvents:UIControlEventTouchUpInside, UIControlEventTouchUpOutside];
thanks!!
try this way instead:
or you can use this one:
Just
OR
them: