有没有办法改变动画速度?

Is there a way to change animation speed?

在iOSswift中我使用HeroTransition库制作动画。有没有办法改变动画速度?

let vc = DODViewController.init(with: project , projectType: .doodle, needToMapFolderIndex: nil)
            
let heroId = "newcontentscanvas1"
cell.hero.id = heroId
vc.hero.isEnabled = true
vc.view.hero.id = heroId
self.present(vc, animated: true, completion: nil)

您可以为英雄组件添加修饰符。在你的情况下,可以按如下方式完成,

cell.hero.modifiers = [.duration(0.8)]

有关更多信息,请查看存储库中的以下问题 #464