微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ShapeLayer.strokeEnd 在 Swift

如何解决ShapeLayer.strokeEnd 在 Swift

我创建了一个 CAShapeLayer 作为一个圆圈,并添加了一些动画,在图像加载时填充它,直到圆圈完全填充并显示图像。

我使用 Alamofire 的 .fractionCompleted 作为我的 shapeLayer.strokeEnd 属性的值(它定义了圆圈填满的速度)。但它有一个奇怪的行为;它完全加载,然后向后移动,然后完全填满,然后再次返回,依此类推。

以下是说明情况的 GIF:Click to see

API 调用如下:

class Service {
    
    var delegate: ServiceDelegate?
    let baseUrl = "https://picsum.photos/id/0/5616/3744"
    typealias ImageCallback = (UIImage) -> Void
    
    func fetchImage(handler: @escaping ImageCallback) {
        
        AF.request(baseUrl).validate().downloadProgress { progress in
            
            let percentage = CGFloat(progress.fractionCompleted)
            
            self.delegate?.sendProgress(progress: percentage)
            
        }.response { (response) in
            
            do {
                guard let data = response.data,let image = UIImage(data: data)
                else { return }
            
                handler(image)
            } catch {
                print("DEBUG ERROR: \(error)")
            }
        }.resume()
    }
}

以下是在 VC 上实现的 ServiceDelegate 函数

extension ViewController: ServiceDelegate {
    func sendProgress(progress: CGFloat) {
        
        dispatchQueue.main.async {
            self.animateCircle(strokeEnd: progress)
        }
        
        print(progress)
            
    }
}

基本动画代码

func animateCircle(strokeEnd: CGFloat) {
    let basicAnimation = CABasicAnimation(keyPath: "strokeEnd")
    basicAnimation.tovalue = 1
    basicAnimation.duration = 2
    basicAnimation.fillMode = .forwards
    basicAnimation.isRemovedOnCompletion = false
    shapeLayer.strokeEnd = strokeEnd
    
    shapeLayer.add(basicAnimation,forKey: "randomKey")
}

如果您需要另一块代码,请告诉我。

解决方法

没关系,我解决了。我的问题是我仍在使用 animateCircle() 函数,即使 shapeLayer.strokeEnd 被认为可以完成完全相同的工作。当我评论该功能时,它运行良好。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。