滾動檢視內容大小
必須將 contentSize
屬性設定為可滾動內容的大小。這指定了可滾動區域的大小。當可滾動區域即 contentSize
大於 UIScrollView
幀大小時,滾動是可見的。
使用 Autolayout:
使用 autolayout 設定滾動檢視的內容時,必須在垂直和水平方向上明確調整其大小,並將所有 4 個邊緣固定到包含滾動檢視。這樣,contentSize
將根據滾動檢視的內容自動計算,並在內容佈局更改時更新。
手動:
迅速
scrollview.contentSize = CGSize(width: 640, height: 800)
Objective-C
scrollview.contentSize = CGSizeMake(640, 800);