mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-14 04:21:01 +00:00
9 lines
246 B
Swift
9 lines
246 B
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
extension UIScrollView: ScrollableToTop {
|
|
func scrollToTop(animated: Bool) {
|
|
setContentOffset(.init(x: 0, y: -adjustedContentInset.top), animated: animated)
|
|
}
|
|
}
|