Ios 为什么我的CareReplicator图层旋转时会出现偏移

Ios 为什么我的CareReplicator图层旋转时会出现偏移,ios,swift,animation,rotation,Ios,Swift,Animation,Rotation,很抱歉,我提供的是静态图片,而不是gif图片,因此无法显示问题 但是我在下面给出了演示的代码,因此您可以在xcode中进行测试 import UIKit class ViewController: UIViewController { var circelWidth:CGFloat = 0.0 var circle_r_y:CGFloat = 316 let apear_circle_duration:CFTimeInterval = 1.5 let t

很抱歉,我提供的是静态图片,而不是gif图片,因此无法显示问题

但是我在下面给出了演示的代码,因此您可以在
xcode
中进行测试

 import UIKit

class ViewController: UIViewController {

    var circelWidth:CGFloat = 0.0
    var circle_r_y:CGFloat = 316
    let apear_circle_duration:CFTimeInterval = 1.5

    let turn_ani_repeat_count:Float = 1 // times
    let turn_ani_duration:Float = 0.4 // one circle, how many time, you can change the proerty to look more detail.

    override func viewDidLoad() {
        super.viewDidLoad()

        initData()

        initUI()
    }

    func initData() {

        // 2.圆圈⭕️
        if (Display.typeIsLike == .iphone6 || Display.typeIsLike == .iphone6plus) {

            self.circelWidth = 260 // must set, then animate the circel
        }else {

            self.circelWidth = 230 // must set, then animate the circel
        }
    }

    func initUI() {

        self.view.backgroundColor = UIColor.brown

        self.animateCircle()
    }

    func animateCircle() {

        let r = CAReplicatorLayer()
        r.bounds = CGRect.init(x: 0.0, y: 0.0, width: circelWidth, height: circelWidth)
        r.cornerRadius = 10.0  // 10
        r.backgroundColor = UIColor.clear.cgColor

        // var circle_r_y:CGFloat = 160.0
        circle_r_y = (UIScreen.main.bounds.size.height - 64) / 2.0 + 64

        r.position = CGPoint.init(x: self.view.bounds.width / 2.0, y: circle_r_y)

        //r.anchorPoint = CGPoint.init(x: 0.5, y: circle_r_y! / r.bounds.height)  // 锚点设置
        r.anchorPoint = CGPoint.init(x: 0.5, y: 0.5)
        self.view.layer.addSublayer(r)

        // dot
        let dot = CALayer()
        dot.bounds = CGRect(x:0.0, y :0.0, width:6.0, height:6.0)
        dot.position = CGPoint(x:100.0, y:10.0)
        dot.backgroundColor = UIColor(white:1, alpha:1.0).cgColor
        dot.cornerRadius = 3.0 // half of dot width 一半

        r.addSublayer(dot)

        let nrDots: Int = 32
        r.instanceCount = nrDots
        let angle = CGFloat(2*M_PI) / CGFloat(nrDots)
        r.instanceTransform = CATransform3DMakeRotation(angle, 0.1, 0.1, 1.0)


        let shrink = CABasicAnimation(keyPath: "transform.scale")
        shrink.fromValue = 1.0
        shrink.toValue = 1.0 // 0.5
        shrink.duration = apear_circle_duration
        shrink.repeatCount = Float.infinity

        dot.add(shrink, forKey: nil)

        r.instanceDelay = apear_circle_duration/Double(nrDots)

        dot.transform = CATransform3DMakeScale(0.1, 0.1, 0.1)

        delay(delay: apear_circle_duration) {

            let turn_key_path = "transform.rotation"
            let turn_ani = CABasicAnimation.init(keyPath: turn_key_path)
            turn_ani.isRemovedOnCompletion = false
            turn_ani.fillMode = kCAFillModeForwards
            turn_ani.toValue = M_PI*2
            turn_ani.duration = CFTimeInterval(self.turn_ani_duration)
            turn_ani.repeatCount = self.turn_ani_repeat_count
            r.add(turn_ani, forKey: turn_key_path)

            dot.transform = CATransform3DMakeScale(1, 1, 1)  // 设置回来,不然再出现会放小

        }
    }

    func delay(delay:Double, closure:@escaping ()->()){

        let when = DispatchTime.now() + delay
        DispatchQueue.main.asyncAfter(deadline: when, execute: closure)
    }

    }
显示.swift
,检查设备类型

import UIKit

public enum DisplayType {
case unknown
case iphone4
case iphone5
case iphone6
case iphone6plus
static let iphone7 = iphone6
static let iphone7plus = iphone6plus
}

    public final class Display {
    class var width:CGFloat { return UIScreen.main.bounds.size.width     }
    class var height:CGFloat { return UIScreen.main.bounds.size.height }
    class var maxLength:CGFloat { return max(width, height) }
    class var minLength:CGFloat { return min(width, height) }
    class var zoomed:Bool { return UIScreen.main.nativeScale >= UIScreen.main.scale }
    class var retina:Bool { return UIScreen.main.scale >= 2.0 }
    class var phone:Bool { return UIDevice.current.userInterfaceIdiom == .phone }
    class var pad:Bool { return UIDevice.current.userInterfaceIdiom == .pad }
    class var carplay:Bool { if #available(iOS 9.0, *) {
        return UIDevice.current.userInterfaceIdiom == .carPlay
    } else {
        // Fallback on earlier versions
        return false//UIDevice.current.userInterfaceIdiom == carplay
    }
    }
    class var tv:Bool { if #available(iOS 9.0, *) {
        return UIDevice.current.userInterfaceIdiom == .tv
    } else {
        // Fallback on earlier versions

        return false
        }
    }
class var typeIsLike:DisplayType {
    if phone && maxLength < 568 {
        return .iphone4
    }
    else if phone && maxLength == 568 {
        return .iphone5
    }
    else if phone && maxLength == 667 {
        return .iphone6
    }
    else if phone && maxLength == 736 {
        return .iphone6plus
    }
    return .unknown
}
}
导入UIKit
公共枚举显示类型{
案件不详
案例iphone4
iphone5手机壳
iphone6手机壳
iphone6plus手机壳
静态let iphone7=iphone6
静态设置iphone7plus=iphone6plus
}
公开期末展示{
类变量宽度:CGFloat{return UIScreen.main.bounds.size.width}
类变量高度:CGFloat{return UIScreen.main.bounds.size.height}
类var maxLength:CGFloat{return max(width,height)}
类var minLength:CGFloat{return min(width,height)}
类变量缩放:Bool{return UIScreen.main.nativeScale>=UIScreen.main.scale}
类变量视网膜:Bool{return UIScreen.main.scale>=2.0}
类变量phone:Bool{return UIDevice.current.userInterfaceIdiom==.phone}
类变量pad:Bool{return UIDevice.current.userInterfaceIdiom==.pad}
类var carplay:Bool{if#可用(iOS 9.0,*){
返回UIDevice.current.userInterfaceIdiom==.carPlay
}否则{
//对早期版本的回退
返回false//UIDevice.current.userInterfaceIdiom==carplay
}
}
类变量tv:Bool{if#可用(iOS 9.0,*){
返回UIDevice.current.userInterfaceIdiom==.tv
}否则{
//对早期版本的回退
返回错误
}
}
类var typeIsLike:DisplayType{
如果电话&&maxLength<568{
返回,iphone4
}
如果电话&&maxLength==568,则为else{
返回,iphone5
}
如果电话&&maxLength==667,则为else{
返回iphone6
}
如果电话&&maxLength==736,则为else{
返回。iphone6plus
}
返回,未知
}
}
问题

如果您在项目中对此进行测试,您会发现问题,在设置动画时,会有一点偏移,这是一个奇怪的问题,因为我确保
CAReplicatorLayer
ahchorPoint
(0.5,0.5)
,但为什么会有偏移呢


如果您想查看更多细节,可以更改
旋转ani\u持续时间:Float
的值,您可以查看偏移量。

可能太晚了,但这是由您提供给旋转变换的向量引起的: 代替
r.instanceTransform=CATTransformM3dMakeRotation(角度,0.1,0.1,1.0)
通过
r.instanceTransform=CATTransformM3dMakeRotation(角度,0,0,1.0)
没关系