有一個 UIImageView ,我想在其中加兩個動畫,同時運行。第一個動畫設置透明度從1到10。第二個動畫移動 UIView 。當 UIView 加載完成後,兩個動畫同時開始。
可能實現麼?請高手幫忙,謝謝。
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
}];