exyte / Macaw

Powerful and easy-to-use vector graphics Swift library with SVG support
MIT License
6.01k stars 554 forks source link

Animate MacawView.zoom #670

Open ggirotto opened 4 years ago

ggirotto commented 4 years ago

Is there any way to animate a MacawView.zoom? I've tried putting inside an UIView.animate like:

UIView.animate(withDuration: 2) {
            self.mapView.zoom.set(offset: Size(200, 200), scale: 1.5, angle: nil)
}

But had no success.

ystrot commented 4 years ago

Hi Guilherme,

You can't animate it using UIView.animate. Probably the easiest way would be to use scheduledTimer for this.