在我正在制作的应用程序中,我试图让一个按钮在屏幕外启动并在屏幕上移动。我不确定如何从屏幕外的按钮开始,但我知道一旦我弄清楚了,我可以执行以下代码:
[UIView beginAnimation:@"animate" context: nil];
[UIView setAnimationDuration:3];
self.myButton.frame = CGRectMake (20, 100, 40, 80);
//Other animations
[UIView commitAnimations];
此外,在该行[UIView beginAnimation:@"animate" context:nil];
中,上下文参数是否要求 CGContextRef?