美文网首页
view翻转动画

view翻转动画

作者: 刘振杰 | 来源:发表于2016-08-24 14:53 被阅读27次

    [UIView animateWithDuration:0.1

    delay:0

    options:UIViewAnimationOptionRepeat

    animations:^{

    view.transform = CGAffineTransformMakeScale(1.0,-1.0);

    }

    completion:^(BOOL finished) {

    //                            view.transform = CGAffineTransformMakeScale(1.0,-1.0);

    }];

    [UIView animateWithDuration:1 delay:0 usingSpringWithDamping:0.5 initialSpringVelocity:0 options:UIViewAnimationOptionLayoutSubviews animations:^{

    view.frame=CGRectMake(10, 100, SCREEN_WIDTH-20, 300) ;

    // view.transform = CGAffineTransformMakeScale(1.0,-1.0);

    } completion:^(BOOL finished) {

    [view.layer removeAllAnimations];

    view.transform = CGAffineTransformMakeScale(1.0,1.0);

    }];

    相关文章

      网友评论

          本文标题:view翻转动画

          本文链接:https://www.haomeiwen.com/subject/sycosttx.html