我正在使用 UIViewBasicanimation。除非收到低电量警报,否则它可以正常工作,然后动画停止/暂停并且在关闭后不会重新启动。除动画外,所有其他按钮都可以正常工作
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:10];
[UIView setAnimationDelegate:self];
[animatingObj setFrame:CGRectMake(100,900,100,100)];
[UIView commitAnimations];