Skip to content

Instantly share code, notes, and snippets.

@langford
Created June 24, 2011 19:42
Show Gist options
  • Save langford/1045517 to your computer and use it in GitHub Desktop.
Save langford/1045517 to your computer and use it in GitHub Desktop.
Why is my UI frozen during this?
[UIView animateWithDuration:0.5 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionBeginFromCurrentState animations:^(void){
self.clippingContainerView.alpha = 1.0;
} completion:^(BOOL finished){
[UIView animateWithDuration:0.5 delay:5.5 options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionBeginFromCurrentState animations:^(void){
self.clippingContainerView.alpha = 0.0;
} completion:^(BOOL finished){
self.state = cvcStateHiddenControls;
}];
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment