0
我有一個非常難過的時間試圖讓我的scrollView正確顯示內容。UIScrollView截斷底部內容
對於一個頁面,似乎顯示出對底部的空白內容的堆和另外它到達底部...傷心至極之前切斷。我已經將scrollView的約束條件設置爲0。
我一直在玩弄試圖設置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)
}