当我从 iOS 6 切换到 iOS 7 设计时,我注意到使用该方法setValue:animated:
不再为滑动过程设置动画。有没有其他人遇到过这个问题并找到了解决方案?
我将添加一些代码以表明我没有做任何复杂的事情:
//Variable declaration
IBOutlet UISlider *s; //Connected in the .xib
//Button pressed
- (IBAction)buttonPressed:(id)sender
{
[s setValue:1 animated:YES];
}
我按下按钮后它直接跳到1。