zoukankan      html  css  js  c++  java
  • ios中两个view动画切换

    @interface ViewController ()
    @property(nonatomic,retain)UIView *redview;
    @property(nonatomic,retain)UIView *yellowview;
    @end
    
    @implementation ViewController
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        self.redview=[[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
        self.redview.backgroundColor=[UIColor redColor];
        [self.view addSubview:self.redview];
        [self.redview release];
        self.yellowview=[[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
      _yellowview.backgroundColor=[UIColor yellowColor];
        [self.view addSubview:_yellowview];
        //[_yellowview release];
    }
    
    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
        
        //转场动画,切换两个view  注意:如果要切换两个viewcontroller做转场要找到共同view;
        UIView *fromvalue=nil;
        UIView *tovalue=nil;
        if(_yellowview.superview){
            fromvalue=_yellowview;
            tovalue=_redview;
        }
        else{
            fromvalue=_redview;
            tovalue=_yellowview;
            
        }
        
      
        
        [UIView transitionFromView:fromvalue toView:tovalue duration:0.5 options:UIViewAnimationOptionTransitionFlipFromBottom completion:^(BOOL finished) {
           //这个api 原理   :
    //        1:[fromvalue.superview addSubview:tovalue];
    //        2:[fromvalue removeFromSuperview];
            NSLog(@"fromvalue-->%@",fromvalue.superview);
            NSLog(@"tovalue-->%@",tovalue.superview);
        }];
    }
  • 相关阅读:
    2016/11/2
    2016/11/1
    bzoj 3809: Gty的二逼妹子序列
    bzoj 1207: [HNOI2004]打鼹鼠
    bzoj 1191: [HNOI2006]超级英雄Hero
    BZOJ 1854: [Scoi2010]游戏
    BZOJ 1296: [SCOI2009]粉刷匠
    BZOJ 1787: [Ahoi2008]Meet 紧急集合
    tarjan算法
    高级的暴力(一)——分块
  • 原文地址:https://www.cnblogs.com/gcb999/p/3189763.html
Copyright © 2011-2022 走看看