码迷,mamicode.com
首页 > 其他好文 > 详细

日常杂记--2

时间:2018-01-10 11:40:40      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:--   wan   tin   ansi   set   gpo   ima   ini   omv   

1、view页面翻转

    UIViewAnimationOptions option = _isLeft?UIViewAnimationOptionTransitionFlipFromLeft:UIViewAnimationOptionTransitionFlipFromRight;

  // 法一

    [UIView transitionFromView:_view1 toView:_view2 duration:.35 options:option completion:nil];

   //法二

    [UIViewtransitionWithView:self.contentViewduration:.35options:option animations:^{

        [self.contentViewexchangeSubviewAtIndex:0withSubviewAtIndex:1];

    } completion:^(BOOL finished) {

    }];

    //法三

    [UIViewanimateWithDuration:.55animations:^{

        [UIViewsetAnimationTransition:UIViewAnimationTransitionFlipFromLeftforView:self.viewcache:YES];

    }];

日常杂记--2

标签:--   wan   tin   ansi   set   gpo   ima   ini   omv   

原文地址:https://www.cnblogs.com/shizhiliblog/p/8256885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!