Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created December 19, 2012 07:12
Show Gist options
  • Select an option

  • Save yuanmai/4335012 to your computer and use it in GitHub Desktop.

Select an option

Save yuanmai/4335012 to your computer and use it in GitHub Desktop.
iOS home screen fade in
_coverImage = [UIImage imageNamed:@"Default.png"];
}
[self.view addSubview:_coverImage];
[UIView beginAnimations:@"FadeOutCover" context:nil];
[UIView setAnimationDuration:0.5f];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(removeAndDeleteCover)];
[_coverImage setAlpha:0.0f];
[UIView commitAnimations];
[_coverImage removeFromSuperview];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment