nsview アニメーターが停止したときにコールバックを設定する方法を見つけようとしています。誰でもこれを行う方法を知っています。
NSRect frame = blob.frame;
frame.origin.x = animationStopX;
[NSAnimationContext beginGrouping];
[[NSAnimationContext currentContext] setDuration:timeToDisappear];
[[blob animator] setFrame:frame];
[NSAnimationContext endGrouping];