为 UIScrollView 提供的类别,使在 iOS 中更容易访问 UIScrollView 的内容属性。
用法:
scrollView.contentInsetTop = 150;
更改 scrollView.contentInset.top,而不是
UIEdgeInset newInset = scrollView.contentInset;
newInset.top = 150;
scrollView.contentInset = newInset;
您可以像访问 contentOffsetX、contentOffsetY、contentInsetTop、contentInsetLeft、contentInsetBottom、contentInsetRight、contentWidth 或 contentHeight 这样的属性一样访问。