0
當前我正在使用CAKeyframeAnimation沿路徑移動一個PNG圖像30秒。有什麼方法可以在動畫之間找到imageview的座標嗎? (可以說在動畫的第15秒)如何找到CAKeyframeAnimation之間的對象的座標?
當前我正在使用CAKeyframeAnimation沿路徑移動一個PNG圖像30秒。有什麼方法可以在動畫之間找到imageview的座標嗎? (可以說在動畫的第15秒)如何找到CAKeyframeAnimation之間的對象的座標?
查看imageview層中的presentationLayer - 它包含動畫過程中圖層當前狀態的所有信息。例如你可以得到當前圖像中心座標的方式如下:
CALayer *presLayer = [imageView.layer presentationLayer];
CGPoint currentCenter = presLayer.center;
非常感謝你。這解決了我的問題:) – sach 2011-04-27 15:38:14
最初,這個工作..但現在presLayer.frame給負統籌 – sach 2011-05-01 07:10:38