Conform to UIAccessibility.isReduceMotionEnabled

This commit is contained in:
Stefan Ceriu
2023-09-20 14:46:56 +03:00
committed by Stefan Ceriu
parent 10c08bcf3a
commit efc4eaf2fe
2 changed files with 11 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ public extension Animation {
/// `noAnimation` if running UI tests, otherwise `default` animation.
static var elementDefault: Animation {
Tests.isRunningUITests ? .noAnimation : .default
Tests.isRunningUITests ? .noAnimation : (UIAccessibility.isReduceMotionEnabled ? .noAnimation : .default)
}
}

View File

@@ -181,8 +181,17 @@ class TimelineTableViewController: UIViewController {
// We only animate when there's a new last message, so its safe
// to animate from the bottom (which is the top as we're flipped).
dataSource?.defaultRowAnimation = .top
dataSource?.defaultRowAnimation = (UIAccessibility.isReduceMotionEnabled ? .none : .top)
tableView.delegate = self
NotificationCenter.default.addObserver(self,
selector: #selector(accessibilityReduceMotionDidChange),
name: UIAccessibility.reduceMotionStatusDidChangeNotification,
object: nil)
}
@objc private func accessibilityReduceMotionDidChange() {
dataSource?.defaultRowAnimation = (UIAccessibility.isReduceMotionEnabled ? .none : .top)
}
/// Updates the table view with the latest items from the ``timelineItems`` array. After