- Name two ways to implement simple animations in iOS.
b) UIViewPropertyAnimator and UIView.animate.
- What does the damping property do in a spring animation?
a) It is used for the bounciness of the animation.
- Name an advantage of UIViewPropertyAnimator.
c) Easier to start, pause, and interact with.
- What is the difference between implementing UIViewControllerTransiting for interactive and non-interactive transitions?
c) You must implement interruptibleAnimator(using:).
- How do you prevent a view from showing out-of-bounds contents?
a) By setting clipToBounds to true on the view.
- Is it possible to add animations to a running property animator?
b) Yes.