// // SPScrollView.swift // Thimra // // Created by 曾觉新 on 2025/4/17. // import UIKit class SPScrollView: UIScrollView { override init(frame: CGRect) { super.init(frame: frame) self.contentInsetAdjustmentBehavior = .never } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } }