コアアニメーションを使用したカカオアプリケーション用のコードスニペットは、どういうわけかアニメーションが表示されません。アニメーションが表示されません
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
[animation setDelegate:self];
NSRect pos = [imageView frame];
[animation setFromValue:[NSValue valueWithRect:pos]];
NSPoint point = NSMakePoint(pos.origin.x-40, pos.origin.y);
[animation setToValue:[NSValue valueWithPoint:point]];
[animation setDuration:2.0];
[[imageView animator] addAnimation:animation forKey:@"myTest"];
これは、作業コードである間:
NSRect position = [imageView frame];
position.origin.x -= 40;
[[imageView animator] setFrame:position];
しかし、オートリバースは動作しません。
最初のものは何も間違っていますか?そして、逆の動きを2番目のものにするには?ありがとう!