0

我正在尝试使用以下代码为 UIView 设置动画:

[self.view bringSubviewToFront:RegNrView];
[UIView animateWithDuration:.5 animations:^{
        RegNrView.frame = CGRectMake(0, 0, 320, 460);
    }
    completion:^(BOOL finished) {

    }];

RegNrView 是一个UIView包含 aUITextField并具有frame: (320,0,320,460). 这是从IBAction. 第一次调用没有任何反应,但第二次它起作用了。为什么这样做?

4

0 回答 0