navigation程序中实现view的翻转效果

来源:互联网 发布:恶意软件 编辑:程序博客网 时间:2024/06/16 08:23

  1. [UIView beginAnimations:nil context:NULL];  
  2. [UIView setAnimationDuration: 1];  
  3. [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight   
  4.                                                      forView:self.navigationController.view cache:YES];  
  5. [[self navigationController] pushViewController:objMapView animated:NO];  
  6. [UIView commitAnimations]

 

 

[斯坦福大学iOS开发教程2010年秋].20101007.[Mark]

原创粉丝点击