I have few subviews responding to the same animation. I want remove the the subview after the animations has finish (animationDidStop ). Is a way to detect what subview was animated in animationDidStop ?
in this particular case:
if ([animationID isEqualToString:@"myAnimation"])
view.removeSubView:myView;
how do you if is the correct subview?, because I as I said before some of the subviews respond to the same animation.