Skip to content

Instantly share code, notes, and snippets.

@krzysztofzablocki
Created April 24, 2014 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krzysztofzablocki/11252222 to your computer and use it in GitHub Desktop.
Save krzysztofzablocki/11252222 to your computer and use it in GitHub Desktop.
Don't repeat yourself
- (void)viewWillAppear:(BOOL)animated
{
[UIView animateWithDuration:animated ? 0.25f : 0.0f animations:^
{
// Some manipulation
} completion:^
{
// Some completion action
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment