You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
Adding support for explicit animations is trivial because we can do a one-to-one mapping of animations to completion handlers.
Adding support for implicit animations, however, is non-trivial because multiple animations map to the same completion handler. We'll have to implement the animation delegate on each added animation and coalesce the overall completion state into a single invocation of the completion handler.
This would bring our API closer in alignment to UIView's animation APIs.
The text was updated successfully, but these errors were encountered:
Adding support for explicit animations is trivial because we can do a one-to-one mapping of animations to completion handlers.
Adding support for implicit animations, however, is non-trivial because multiple animations map to the same completion handler. We'll have to implement the animation delegate on each added animation and coalesce the overall completion state into a single invocation of the completion handler.
This would bring our API closer in alignment to UIView's animation APIs.
The text was updated successfully, but these errors were encountered: