If your animation is binding to a CCNode class, Try this :
[self.animationManager setCompletedAnimationCallbackBlock:^(id sender) {
CCAnimationManager *animationManager = sender;
if ([animationManager.lastCompletedSequenceName isEqualToString:@"MyAnimationTimeLinesName"]) {
[self removeFromParent];
}
}];