You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated my Xcode to Xcode 9.3 and this error came out
BasicAnimation.swift file, line 48
Animate.swift file , line 494
and other problem => Missing argument for parameter #1 in call, swift file, line 48
/// The animation block that gets performed. public var animationBlock: AnimationBlock { switch self { case .cornerRadius(view: let view, duration: let duration, delay: _, radius: let radius, timing: let timing): return { let animation = CABasicAnimation(keyPath: "cornerRadius") animation.timingFunction = timing.coreAnimationCurve animation.fromValue = view.layer.cornerRadius animation.toValue = radius animation.duration = duration view.layer.add(animation, forKey: "corner") view.layer.cornerRadius = radius } } }
The text was updated successfully, but these errors were encountered:
Sorry for the delay in response. I will take a look at this as soon as possible. In the meantime I would consider forking the repository if you have a minute because it will take me a little while to address the problem.
I updated my Xcode to Xcode 9.3 and this error came out
BasicAnimation.swift file, line 48
Animate.swift file , line 494
and other problem => Missing argument for parameter #1 in call, swift file, line 48
/// The animation block that gets performed. public var animationBlock: AnimationBlock { switch self { case .cornerRadius(view: let view, duration: let duration, delay: _, radius: let radius, timing: let timing): return { let animation = CABasicAnimation(keyPath: "cornerRadius") animation.timingFunction = timing.coreAnimationCurve animation.fromValue = view.layer.cornerRadius animation.toValue = radius animation.duration = duration view.layer.add(animation, forKey: "corner") view.layer.cornerRadius = radius } } }
The text was updated successfully, but these errors were encountered: