Skip to content

Instantly share code, notes, and snippets.

@0x8badf00d
Created January 31, 2012 23:23
Show Gist options
  • Save 0x8badf00d/1713749 to your computer and use it in GitHub Desktop.
Save 0x8badf00d/1713749 to your computer and use it in GitHub Desktop.
[UIView animateWithDuration:1.5f
delay:0.0f
options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^{
[self.buttonsView removeFromSuperview];
[self.view addSubview:self.textFieldView];
}
completion:^(BOOL finish){NSLog(@"Finished Bool:%@",finish?@"Yes":@"No");}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment