commit
c08b6d1ccc
|
@ -17,13 +17,13 @@ extension UITableView {
|
||||||
selectRow(at: indexPath, animated: animations.contains(.select), scrollPosition: .none)
|
selectRow(at: indexPath, animated: animations.contains(.select), scrollPosition: .none)
|
||||||
|
|
||||||
if let visibleIndexPaths = indexPathsForRows(in: safeAreaLayoutGuide.layoutFrame) {
|
if let visibleIndexPaths = indexPathsForRows(in: safeAreaLayoutGuide.layoutFrame) {
|
||||||
if !(visibleIndexPaths.contains(indexPath) && cellCompletelyVisable(indexPath)) {
|
if !(visibleIndexPaths.contains(indexPath) && cellCompletelyVisible(indexPath)) {
|
||||||
scrollToRow(at: indexPath, at: .middle, animated: animations.contains(.scroll))
|
scrollToRow(at: indexPath, at: .middle, animated: animations.contains(.scroll))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func cellCompletelyVisable(_ indexPath: IndexPath) -> Bool {
|
func cellCompletelyVisible(_ indexPath: IndexPath) -> Bool {
|
||||||
let rect = rectForRow(at: indexPath)
|
let rect = rectForRow(at: indexPath)
|
||||||
return safeAreaLayoutGuide.layoutFrame.contains(rect)
|
return safeAreaLayoutGuide.layoutFrame.contains(rect)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue