UIScrollView的contentInset

设置UIScrollView、UITableView、UICollectionView的内容偏移。

scrollview.contentInset = UIEdgeInsetsMake(100, 0, 0, 0);

则scrollView的contentOffset.y初始值会变为100。

Apple官方的解释是:The distance that the content view is inset from the enclosing scroll view.
翻译为:内容视图与封闭滚动视图的距离。

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