美文网首页
UIView 动画

UIView 动画

作者: 雨辰西西 | 来源:发表于2022-02-24 17:10 被阅读0次

    [UIView animateWithDuration:1.0 // 动画时长

                          delay:0.0// 动画延迟

         usingSpringWithDamping:0.5 // 类似弹簧振动效果 0~1 数值越小震动越明显

          initialSpringVelocity:5.0 // 初始速度

                        options:UIViewAnimationOptionCurveEaseInOut // 动画过渡效果

                     animations:^{

                     }completion:^(BOOLfinished) {

                     }];

相关文章

网友评论

      本文标题:UIView 动画

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