I’m using animateWithDuration:animations:completion: to move several elements of my User Interface (about 4 elements) before removeFromSuperview: is called.
My question is, how can I know that all those animations have completed before calling removeFromSuperview:?
Ok, to answer my own question.
I ended up doing something like this:
I hope this can serve as an example for someone else.