You need to move:
[self.ReviewViewController.view removeFromSuperview]
This cannot be done "over time" in the animation. What you want to do is move this to the selector and use setAnimationDelegate and setAnimationDidStopSelector . Add the following to the animation block:
[UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(finshedFadeOut)];
Then do the following method:
- (void)finshedFadeOut { [self.ReviewViewController.view removeFromSuperview]; }
source share