UIView_ScrollView

来源:互联网 发布:网络诈骗主题班会ppt 编辑:程序博客网 时间:2024/06/04 05:50

1.contentSize、contentInset和contentOffset 是 scrollView三个基本的属性。


contentSize: The size of the content view. 

其实就是scrollview可以滚动的区域,比如frame = (0 ,0 ,320 ,480) contentSize = (320 ,960),代表你的scrollview可以上下滚动,滚动区域为frame大小的两倍。


contentOffset:The point at which the origin of the content view is offset from the origin of the scroll view. 

是scrollview当前显示区域顶点相对于frame顶点的偏移量,比如上个例子你拉到最下面,contentoffset就是(0 ,480),也就是y偏移了480 

在横向的广告轮播图里经常用到。


contentInset:The distance that the content view is inset from the enclosing scroll view.

是scrollview的contentview的顶点相对于scrollview的位置,例如你的contentInset = (0 ,100),那么你的contentview就是从scrollview的(0 ,100)开始显示 


http://fulerbakesi.iteye.com/blog/1592235


遇到个问题。scrollview有A.B两个页面,从C页面不会跳过来,只能找到A页面的viewcontroller,要是给A,B每个页面都加一个viewcontroller,跳过来B页面的控件不起作用了。

0 0