私はで使用されるすべての可能なキーが何であるかを知りたいですCABasicAnimation
このように:
CABasicAnimation *imageRotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
これは回転します...可能なすべてのキーはどこにありますか?よろしくお願いします
私はで使用されるすべての可能なキーが何であるかを知りたいですCABasicAnimation
このように:
CABasicAnimation *imageRotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
これは回転します...可能なすべてのキーはどこにありますか?よろしくお願いします
主なanimationWithKeyPath
値は次のとおりです。
これらは、CoreAnimation プログラミング ガイドの「構造体フィールドのキー パス サポート」セクションにあります。
基本的に、可能なすべてのkeyPathを使用できます。したがって、すべてのビューがそうであるように、オブジェクトがプロパティ 'alpha' を実装している場合、このプロパティを自動的にアニメーション化することができます。
次に、CAAnimation は、アニメーションの開始点と終了点の間のステップを計算し、それらを設定して、ビューを再描画します。
CABasicAnimation のクラス リファレンスとそれに対応するスーパー クラスを調べることを検討しましたか?
CABasicAnimation: https://developer.apple.com/library/mac/#documentation/GraphicsImaging/Reference/CABasicAnimation_class/Introduction/Introduction.html
CAPropertyAnimation https://developer.apple.com/library/mac/#documentation/GraphicsImaging/Reference/CAPropertyAnimation_class/Introduction/Introduction.html#//apple_ref/occ/cl/CAPropertyAnimation