两个页面之间的动画跳转。_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 两个页面之间的动画跳转。

两个页面之间的动画跳转。

 2014/10/10 14:56:35  粉粉色  程序员俱乐部  我要评论(0)
  • 摘要:接触到了两个页面之间的跳转带动画的。效果还不错。一,先上项目总体图。二,上代码。AppDelegate.m文件-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{self.window=[[UIWindowalloc]initWithFrame:[[UIScreenmainScreen]bounds]]
  • 标签:

 

接触到了两个页面之间的跳转带动画的。效果还不错。

 

一,先上项目总体图。

 

 

二,上代码。

 

AppDelegate.m文件

 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    
    FirstViewController *firstView=[[FirstViewController alloc]init];
    UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:firstView];
    self.window.rootViewController=nav;
    
    
    
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

 

FirstViewController.m文件

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    self.title=@"FirstVC";
    self.view.backgroundColor=[UIColor redColor];
}
//点击页面任何处跳转到页面二
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    SecondViewController *secondVC=[[SecondViewController alloc]init];
    
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.9];
    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
    [self.navigationController pushViewController:secondVC animated:NO];
    [UIView commitAnimations];
    
}

 

SecondViewController.m文件

 

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    self.title=@"SecondVC";
    self.view.backgroundColor=[UIColor blueColor];
}

 

上一篇: iOS实例下载:使用腾讯的SDK将新浪微薄嵌入到应用中 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名