Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は 1 つ持っており、それに2 つの異なるアニメーションを適用し、同時に実行しUIImageViewたいと考えています。最初のアニメーションは不透明度を 0 から 1 に設定し、2 番目のアニメーションは UIView をあるポイントから別のポイントに移動します。UIView が読み込まれると、2 つのアニメーションが同時に開始されます。
UIImageView
それは可能ですか?
これを試して
CGPoint movePoint = Your end animation point; yourView.opaque = 0.0f; [UIView animateWithDuration:2.0 animations:^{ yourView.center = movePoint; yourview.opaque = 1.0 } completion:^(BOOL finished){ //Animation completed }];