美文网首页
UIView 弹簧API

UIView 弹簧API

作者: if_you_like | 来源:发表于2018-03-12 15:16 被阅读2次

    UIView 的反弹动画API

    //usingSpringWithDamping的范围为0.0f到1.0f,数值越小「弹簧」的振动效果越明显。
    //initialSpringVelocity则表示初始的速度,数值越大一开始移动越快。
    
    [UIView animateWithDuration:2 delay:0 usingSpringWithDamping:0.8 initialSpringVelocity:3 options:UIViewAnimationOptionCurveEaseIn animations:^{
            CGFloat y = [UIScreen mainScreen].bounds.size.height - frame.size.height;
            self.sheetView.frame = CGRectMake(frame.origin.x, y, frame.size.width, frame.size.height);
        } completion:^(BOOL finished) {
            
        }];
    

    相关文章

      网友评论

          本文标题:UIView 弹簧API

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