Fix double tap scroll to top issue

This commit is contained in:
Bob Sun 2018-01-16 20:04:16 -08:00
parent b4e1dddd45
commit 374c6c8c10
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4

View file

@ -554,9 +554,9 @@ class PasswordsViewController: UIViewController, UITableViewDataSource, UITableV
self.tapTabBarTime = currentTime
if duration < 0.35 {
let topIndexPath = IndexPath(row: 0, section: 0)
if let _ = tableView.cellForRow(at: topIndexPath) {
tableView.scrollToRow(at: topIndexPath, at: .bottom, animated: true)
}
if tableView.numberOfSections > 0 {
tableView.scrollToRow(at: topIndexPath, at: .bottom, animated: true)
}
self.tapTabBarTime = 0
return
}