Working with UIView’s Transition Animations
Ever since iOS 4, the iOS SDK has included UIView’s methods
1 |
transitionFromView:toView:duration:options:completion |
and
1 |
transitionWithView:duration:options:animations:completion |
which make it very easy to implement animated transitions between views. While very useful, they’re not […]