metatext/Extensions/UIScrollView+Extensions.swift

10 lines
246 B
Swift
Raw Normal View History

2021-02-06 01:16:59 +00:00
// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
extension UIScrollView: ScrollableToTop {
func scrollToTop(animated: Bool) {
setContentOffset(.init(x: 0, y: -adjustedContentInset.top), animated: animated)
}
}