zoukankan      html  css  js  c++  java
  • ios的两种界面跳转方式

    1、在界面的跳转有两种方法,一种方法是先删除原来的界面,然后在插入新的界面,使用这种方式无法实现界面跳转时的动画效果。

    if(self.rootViewController.view.superview == nil){
           [singleDollController.view removeFromSuperview];
           [self.view insertSubview:rootViewController.view atIndex:0];
    }
    else{
           [singleDollController.view removeFromSuperView];
           [self.view insertSubview:singleDollController.view atIndex:0];
    }

    2、将跳转的界面的Controller放入到UINavigationController中,使用push或pop实现跳转,使用这种方式可用实现动画效果。

    navController= [[UINavigationControlleralloc]init];
    [navController setNavigationBarHidden:YES];
    [window addSubview:navController.view];
    rootView= [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];
    [navController pushViewController:rootView animated:NO];
     
    self.singleDollView= view;
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.5];
    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeftforView:self.navController.view cache:NO];
    [self.navController pushViewController:self.singleDollView animated:NO];
    [UIView commitAnimations];
    花开花谢春不管,水暖水寒鱼自知.
  • 相关阅读:
    C盘格式化
    电脑显示器有波纹抖动怎么办
    磁盘碎片
    如何把Excel另存为XML格式文件(快速转换)
    题目1551:切蛋糕
    题目1552:座位问题
    题目1550:分糖果
    题目1493:公约数
    题目1544:数字序列区间最小值
    RMQ (Range Minimum/Maximum Query)算法
  • 原文地址:https://www.cnblogs.com/taintain1984/p/3220730.html
Copyright © 2011-2022 走看看