Jump to thread table view when view appears

This fixes the issue where people can’t get past the navigation title
This commit is contained in:
Jed Fox 2022-10-31 12:52:15 -04:00
parent 8f3caba089
commit 1c236859ab
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1
1 changed files with 6 additions and 0 deletions

View File

@ -104,6 +104,12 @@ extension ThreadViewController {
tableView.deselectRow(with: transitionCoordinator, animated: animated)
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
UIAccessibility.post(notification: .screenChanged, argument: tableView)
}
}