UIScrollViewContentAccessors 1.0.3

UIScrollViewContentAccessors 1.0.3

测试已测试
语言编程语言 Obj-CObjective C
许可证 MIT
发布最新版本2014 年 12 月

未声明 维护。



  • 作者:
  • Anton Domashnev

为 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 这样的属性一样访问。