Why does the transform of the presentationLayer represent the state of the finished animation, while the animation is running? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T20:20:58Zhttp://stackoverflow.com/feeds/question/880068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/880068/why-does-the-transform-of-the-presentationlayer-represent-the-state-of-the-finish0Why does the transform of the presentationLayer represent the state of the finished animation, while the animation is running?Thanks2009-05-18T22:09:12Z2009-05-18T22:55:02Z
<p>The documentation says:</p>
<blockquote>
<p>The presentation tree contains the
values that are currently being
presented to the user as an animation
takes place. For example, setting a
new value for the backgroundColor of a
layer immediately changes the value in
the layer tree. However, the
backgroundColor value in the
corresponding layer in the
presentation tree will be updated with
the interpolated colors as they are
displayed to the user.</p>
</blockquote>
<p>Now the truth from my hard-core 8-hours-testing in a sandbox with only one view and an animation. During the animation I ask for:</p>
<p>CATransform3D currentTransform = [(CALayer*)[self.layer presentationLayer] transform]</p>
<p>I check for m11 and m12 values of currentTransform, to calculate the current rotation angle.</p>
<p>When I set up to rotate 90 degrees, two things happen, while animation takes place and has not finished:</p>
<ul>
<li><p>sometimes my calculated angle based on the currentTransform is 0.0, although the view is rotated by some angle and definitely not at 0.0.</p></li>
<li><p>and sometimes (most often) it's just exactly the target value of 90 degrees.</p></li>
</ul>
<p>But I never get what I want: The current state in the animation. I've been searching a while on the net, and developers seem to make rarely use of this. So that's either an bug in the framework or a bug in the documentation, or my code above to obtain the current visible transform is totally wrong.</p>
http://stackoverflow.com/questions/880068/why-does-the-transform-of-the-presentationlayer-represent-the-state-of-the-finish/880196#8801960Answer by Corey Floyd for Why does the transform of the presentationLayer represent the state of the finished animation, while the animation is running?Corey Floyd2009-05-18T22:55:02Z2009-05-18T22:55:02Z<p>I know I have pulled the frame from the presentation layer to find the location of a view on screen during animation. That definitely works.</p>
<p>I used it to stop the animation then update the current the view with the presentation layer frame.</p>
<p>It should work, I think you will need to post your specific code to figure this out.</p>