Reputation: 31
Upvotes: 3
Views: 2153
Reputation: 22334
Animations are updated on the presentation layer of a view. You can retrieve the values representing the current state of the image view during an animation by looking at this layer.
CGPoint center = [[imageView.layer presentationLayer] center];
Upvotes: 4