CABasicAnimation をレイヤーに直接追加するときの UIViewAnimationOptionBeginFromCurrentState フラグに相当するものは何ですか? 同じキーに別のアニメーションを追加するときに現在のアニメーションをオーバーライドし、現在の状態からアニメーションを開始したいと思います。
たとえば、次のコードを使用してレイヤーにアニメーションを追加しています。
CABasicAnimation *moveAnimation = [CABasicAnimation animationWithKeyPath:@"position.y"];
moveAnimation.fromValue = [NSNumber numberWithInt:layer.position.y];
moveAnimation.toValue = [NSNumber numberWithInt:0];
moveAnimation.duration = BUBBLE_DEFAULT_ANIMATION_DURATION;
[layer addAnimation:moveAnimation forKey:key];
どんな助けでも大歓迎です。