metatext/Extensions/UIScrollView+Extensions.swift
2021-02-05 17:16:59 -08:00

10 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)
}
}