我想以动画方式增加 UISlider 的宽度,但是在尝试使用滑块时动画完成后......它会回到它的起始宽度,即 0。
在.h
UISlider *slider;
米
视图加载:
slider=[[UISlider alloc]initWithFrame:CGRectMake(65, 65, 0, 23)];
[self.view addSubview:slider];
在 IBAction
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:1];
[UIView setAnimationDuration:0.5];
slider.frame=CGRectMake(65, 65, 183, 23);
[UIView commitAnimations];