Periodically, I add a UIView to the UIDynamicAnimator, which has some behaviours of its own. But when I remove the UIView from it's superview (when it falls offscreen) the UIDynamicAnimator still keeps the UIView's behaviours in its 'behaviors' property.
My question is, exactly what is the best approach to handling the behaviours in a UIDynamicAnimator?
Do I have to manually keep track of all the behaviours pertaining to that UIView and manually remove them before removing the UIView from the view hierarchy?
[myBehavior removeItem:item]
does not throw an exception ifitem
is not part ofmyBehavior
, so what you could do is have a genericremoveView
method that removes a view from all behaviors that could possibly pertain to it, something like:Which could be called whenever you need to remove a view. Even if, say, the view is not part of
_otherBehavior
this method would still properly remove the view.