我正在努力让我的scrollView正确显示内容。
对于一个页面,它似乎在底部显示一堆空白内容,而另一页则在到达底部之前切断...非常悲伤。我已经为每一方设置了scrollView的约束。
我一直在尝试设置contentSize,但似乎没有做任何事情。
@IBOutlet weak var scrollView: UIScrollView!
override func viewDidLoad() {
super.viewDidLoad()
self.automaticallyAdjustsScrollViewInsets = false
self.scrollView.contentSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height)
print("Width: \(self.view.bounds.size.width) Height: \(self.view.bounds.size.height) scrollView: \(self.scrollView.contentSize)")
// prints -> Width: 375.0 Height: 667.0 scrollView: (375.0, 667.0)
}