我animationWithDuration
用于动画元素。我在completion
另一个块中插入了 1 个动画。
[UIView animateWithDuration:2.0 delay:0.1 options:UIViewAnimationOptionCurveEaseInOut animations:^{
} completion:^(BOOL finished) {
[UIView animateWithDuration:2.0 delay:0.1 options:UIViewAnimationOptionCurveEaseInOut animations:^{
} completion:^(BOOL finished) {
... //and simple
}];
}];
所以我有六到九个元素的楼梯animationWithDuration
。那么我该如何优化呢?
对不起我的英语不好。