UIScrollView的contentSize、contentOffset、contentInset

都知道UIScrollView是可以滚动的,但是前提是你得告诉它内容大小,他才可以在相应大小内滚动,contentSize就是设置内容大小的,那么contentOffset、contentInset是干什么的。
- contentOffset:scrollview当前显示区域顶点相对于frame顶点的偏移量
- contentInset:scrollview中contentView.frame.origin与scrollview.frame.origin的关系

你可能感兴趣的:(UIScrollView的contentSize、contentOffset、contentInset)