我有一个UISlider,通过在CGRectMake中设置UISlider.value,使UIImageView从一侧移动到另一侧。我想检测滑块停止的时间,以便我可以进行另一个动作。我将如何检测UISlider何时停止,然后编写if语句来执行其他操作。
答案 0 :(得分:0)
我发现我需要做的就是添加
[zoomSlider addTarget:self action:@selector(stopSlider)
forControlEvents:UIControlEventTouchUpInside];
在我的滑块的IBACTION内,然后添加
-(void) stopSlider;{
with whatever code I wanted to happen when I stop touching the slider here
}