Skip to content

Instantly share code, notes, and snippets.

@rodericj
Created March 3, 2014 23:46
Show Gist options
  • Save rodericj/9337153 to your computer and use it in GitHub Desktop.
Save rodericj/9337153 to your computer and use it in GitHub Desktop.
[UIView animateKeyframesWithDuration:0.5 delay:0 options:UIViewKeyframeAnimationOptionCalculationModeLinear animations:^
{
CGRect newFrame = self.view.bounds;
newFrame.origin.y = newFrame.size.height;
[webView setFrame:newFrame];
}
completion:^(BOOL finished)
{
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment