In UIViewPropertyAnimator
, is there a way to just stop all UIViewPropertyAnimator
animations?
Or perhaps simply get all current animations - then of course you could stop
them all.
Can this be done?
Or do you really have to
- (a) do only one per
UIViewPropertyAnimator
,
and,
- (b) keep a reference to each of those?
UIViewPropertyAnimator
doesn't return references to the animations it creates? Did you mean “keep a reference to every single animator?” Are you using many animators or a single animator? – Whiteside