[animationImageView setWantsLayer:YES];
CAKeyframeAnimation *keyframeAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
keyframeAnimation.values = [animationsBindingsController valueForKeyPath:@"selection.controlPoints"];
keyframeAnimation.duration = 5;
[animationImageView.layer addAnimation:keyframeAnimation forKey:@"position"];
[pageContent addSubview:animationImageView];
AnimationImageView
のサブクラスですNSImageView
。
animationImageView
オブジェクトは 5 秒間 (アニメーションの期間中) 消え、突然初期位置に表示されます。