Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.40 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How back two UIViewController
  2. [self.view addSubview: selectSubOpt.view];
  3.        
  4. [UIView beginAnimations:@"flipping view" context:nil];
  5. [UIView setAnimationDuration:1];
  6. [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
  7. [UIView setAnimationTransition: UIViewAnimationTransitionCurlUp
  8.                        forView:self.view.superview cache:YES];
  9.  
  10. [self.view removeFromSuperview];
  11. [UIView commitAnimations];