Skip to content

Instantly share code, notes, and snippets.

@kirb
Forked from S1ReX/gist:4148340
Created November 26, 2012 14:00
Show Gist options
  • Save kirb/4148344 to your computer and use it in GitHub Desktop.
Save kirb/4148344 to your computer and use it in GitHub Desktop.
CGRect alertFrame = self.frame;
CGFloat oldY = alertFrame.origin.y;
alertFrame.origin.y = -alertFrame.size.height;
self.frame = alertFrame;
[UIView animateWithDuration:.3f animations:^{
CGRect alertFrame = self.frame;
alertFrame.origin.y = oldY;
self.frame = alertFrame;
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment