自学内容网 自学内容网

iOS UIScrollView的一个特性

1如果UIScrollView 的contentSize.height >
scrollView.bounds.size.height - scrollView.contentInset.top - scrollView.contentInset.bottom
, 则scrollView就可以滚动,否则无法滚动

并且最大的滚动范围就是 contentSize.height - (
scrollView.bounds.size.height - scrollView.contentInset.top - scrollView.contentInset.bottom
这里说的是自然滚动,就是在用户松手的情况下
能滚动的最大范围

并且,我们通过代码 [uiscrollView setContentOffset:animated:YES]
或者 [uiscrollView setContentOffset:cgpointmake]设置的
都只能是自动滚动能达到的位置,即 在contentSize.height - (
scrollView.bounds.size.height - scrollView.contentInset.top - scrollView.contentInset.bottom)之内,否则即使设置了,也会因为
contentSize不够而导致失败

2
两个滚动方法的不同

[uiscrollView setContentOffset:animated:YES]

会出发scrollView 的 scrollViewDidScroll代理方法

[uiView animatedwithduration:0.2 animated:^{
[uiscrollView setContentOffset:animated:NO]
}];

不会触发scrollViewDidScroll代理方法


原文地址:https://blog.csdn.net/LIUXIAOXIAOBO/article/details/145268846

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!