我想知道最好的方法是:
你有这个功能:
- (void)launchAirplaneint)whichAirplane {
// Add score lables
// Start particle effect
// Move airplane (whichAirplane)
// Remove airplan
}
您有 10 架飞机,它们彼此相邻。每架飞机应该在前一架飞机之后延迟 0.1 秒发射。所以飞机 1 在 0 秒后发射,飞机 2 在 0.1 秒后发射,飞机 3 在 0.2 秒后发射,等等。
所以有几种方法可以做到这一点:
我会这样做:
NSArray *airplanes = ... // here you are initializing your airplanes array
NSTimeInterval *duration = 1.0f;
[airplanes enumerateObjectsUsingBlock:^(Airplane *plane, NSUInteger idx, BOOL *stop) {
[UIView animateWithDuration:duration delay:0.1 * idx options:0 animations:^{
// do your airplane animation here
} completion:^(BOOL finished) {
}];
}];
关于IOS:延迟动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18810165/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |