iOS中的动画问题

时间:2015-02-28 13:07:44

标签: ios animation

我在我的应用程序中使用了一些动画。它运行正常。但是在调用另一个动画时,前一个动画来到旧位置。如何解决这些问题。

这是我的代码:

    CGRect frame = self.PickerView.frame;
    frame.origin.x=0;
    frame.origin.y=730;

    [UIView beginAnimations:nil context:nil];

    [UIView setAnimationDuration:1.0];

    self.PickerView.frame=frame;

    [UIView commitAnimations];

0 个答案:

没有答案