测试已测试 | ✗ |
语言语言 | SwiftSwift |
许可证 | MIT |
发布日期最新版本 | 2017年4月 |
SwiftSwift 版本 | 3.0 |
SPM支持 SPM | ✗ |
由 shota ioramashvili 维护。
// left animation
tableView.reloadData(
with: .simple(duration: 0.45, direction: .left(useCellsFrame: true),
constantDelay: 0))
// right spring animation
tableView.reloadData(
with: .spring(duration: 0.45, damping: 0.65, velocity: 1, direction: .right(useCellsFrame: false),
constantDelay: 0))
// rotation spting animation
tableView.reloadData(
with: .spring(duration: 0.45, damping: 0.65, velocity: 1, direction: .rotation(angle: Double.pi / 2),
constantDelay: 0))
// rotation 3d
tableView.reloadData(
with: .simple(duration: 0.75, direction: .rotation3D(type: .ironMan),
constantDelay: 0))