2つのビューを一緒に移動しようとしています:
[UIView animateWithDuration:0.5
animations:^{
[currentView setCenter:CGPointMake(currentView.center.x + currentView.frame.size.width, currentView.center.y)];
[nextView setCenter:CGPointMake(nextView.center.x + nextView.frame.size.width, nextView.center.y)];
}];
しかし、私はそれをどうにかすることはできません。nextView だけが動いています。
アニメーションを 1 つだけコミットすると、正常に動作します。
その理由は何ですか?それは私の宣言のせいでしょうか:
nextView = [[UIView alloc] initWithFrame:currentView.frame];