ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 간단한 탄력있는 애니메이션
    iOS/Mac 2017. 6. 13. 15:06



    간단히 할 수 있는 탄력있는 애니메이션 설정 값.


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    [UIView animateWithDuration:0.3
            delay:0
            usingSpringWithDamping:0.7
            initialSpringVelocity:3.0
            options:UIViewAnimationOptionCurveEaseInOut
            animations:^{
                // 애니메이션 코드
                // ...
            }
            completion:^(BOOL finished) {
                // 완료후 코드
            }
    ];
    cs




    From: https://developer.apple.com/documentation/uikit/uiview/1622594-animatewithduration




    반응형

    댓글

Designed by Tistory.