mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
Swift
38 lines
1.1 KiB
Swift
3 years ago
|
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
public extension UIScrollView {
|
||
|
static let fastEndScrollingThen: ((UIScrollView, CGPoint?, @escaping () -> ()) -> ()) = { scrollView, currentTargetOffset, callback in
|
||
|
let endOffset: CGPoint
|
||
|
|
||
|
if let currentTargetOffset: CGPoint = currentTargetOffset {
|
||
|
endOffset = currentTargetOffset
|
||
|
}
|
||
|
else {
|
||
|
let currentVelocity: CGPoint = scrollView.panGestureRecognizer.velocity(in: scrollView)
|
||
|
|
||
|
endOffset = CGPoint(
|
||
|
x: scrollView.contentOffset.x,
|
||
|
y: scrollView.contentOffset.y - (currentVelocity.y / 100)
|
||
|
)
|
||
|
}
|
||
|
|
||
|
guard endOffset != scrollView.contentOffset else {
|
||
|
return callback()
|
||
|
}
|
||
|
|
||
|
UIView.animate(
|
||
|
withDuration: 0.1,
|
||
|
delay: 0,
|
||
|
options: .curveEaseOut,
|
||
|
animations: {
|
||
|
scrollView.setContentOffset(endOffset, animated: false)
|
||
|
},
|
||
|
completion: { _ in
|
||
|
callback()
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
}
|