contentSize、contentInset和contentOffset 是UIScrollView三個(gè)基本的屬性。
contentSize:即內(nèi)容,就是scrollview可以滾動(dòng)的區(qū)域,比如frame = (0 ,0 ,100 ,200) contentSize = (100 ,400),代表你的scrollview可以上下滾動(dòng),滾動(dòng)區(qū)域?yàn)閒rame大小的兩倍。其中常用的是contentSize.height = 內(nèi)容的高度。
contentOffset:即偏移量,其中分為contentOffset.y=內(nèi)容的頂部和frame頂部的差值,contentOffset.x=內(nèi)容的左邊和frame左邊的差值,contentOffset.y最為常用。
contentInset:即內(nèi)邊距,contentInset = 在內(nèi)容周圍增加的間距(粘著內(nèi)容),contentInset的單位是UIEdgeInsets,默認(rèn)值為UIEdgeInsetsZero。

1461605-e0f55655357cad70.png