我采用了[UIView animateWithDuration:...]驅動UIImageView的視圖序列。代碼如下:
[UIView animateWithDuration:1.0 animations:^{
imageView.frame = newImageRectPosition;
}completion:^(BOOL finished){
}];
我希望在當前過程沒完成的時候就開始驅動下一個UIImageView,比如在當前過程進行到一半的時候。能實現嗎?
用兩個UIView啟動塊。其中一個在第一個進行一半時延遲,代碼如下:
[UIView animateWithDuration:1.0
animations:^{ ... }
completion:^(BOOL finished){ ... }
];
[UIView animateWithDuration:1.0
delay:0.5
options:UIViewAnimationCurveLinear
animations:^{ ... }
completion:^(BOOL finished) { ... }
];