This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
v2.1.0
This minor release introduces new implicit animation APIs. These APIs provide a migration path from existing UIView animateWithDuration:...
code.
New features
New APIs for writing implicit animations in UIView style:
animator.animate(with: timing) {
view.alpha = 0
}
Source changes
- Add a unit test verifying that the completion handler is called when duration == 0. (#34) (featherless)
- Add new APIs for implicit animations. (#30) (featherless)
API changes
MDMMotionAnimator
new method: animateWithTiming:animations:
new method: animateWithTiming:animations:completion: