UIScrollView+CNLiveExtensions.swift 338 Bytes
//
//  UIScrollView+CNLiveExtensions.swift
//  metaCode
//
//  Created by zx on 2023/11/16.
//

import Foundation

extension UIScrollView {
    func scrollToBottom() {
        let bottomOffset = CGPoint(x: 0, y: contentSize.height - bounds.size.height + contentInset.bottom)
        setContentOffset(bottomOffset, animated: true)
    }
}