美文网首页
iOS 核心动画KeyPath取值

iOS 核心动画KeyPath取值

作者: 山杨 | 来源:发表于2017-07-27 17:08 被阅读14次

    animationWithKeyPath的值:

    transform.scale = 比例轉換
    transform.scale.x = 闊的比例轉換
    transform.scale.y = 高的比例轉換
    transform.rotation.z = 平面圖的旋轉
    opacity = 透明度
    margin
    zPosition
    backgroundColor    背景颜色
    cornerRadius    圆角
    borderWidth
    bounds
    contents
    contentsRect
    cornerRadius
    frame
    hidden
    mask
    masksToBounds
    opacity
    position
    shadowColor
    shadowOffset
    shadowOpacity
    shadowRadius
    
    KeyPath.png

    注意这几条属性别忘记:

    theAnimation.removedOnCompletion = NO;
    theAnimation.fillMode = kCAFillModeForwards;
    theAnimation.autoreverses = NO;
    

    相关文章

      网友评论

          本文标题:iOS 核心动画KeyPath取值

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