Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. [UIView animateWithDuration:0.4 animations:^{
  2. [self.containerView layoutIfNeeded];
  3. }];
  4.  
  5. [UIView animateWithDuration:1.0f delay:0.0f options:UIViewAnimationOptionLayoutSubviews animations:^{
  6. [self.view layoutIfNeeded];
  7. } completion:nil];
  8.  
  9. [UIView animateWithDuration:duration delay:delay options:UIViewAnimationOptionBeginFromCurrentState animations:^{
  10. [self layoutIfNeeded];
  11. } completion:nil];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement