contentSize 、contentInset 和 contentOffset区分

来源:互联网 发布:手机软件强力卸载软件 编辑:程序博客网 时间:2024/05/21 18:34

1.contentSize 是scrollview中的一个属性,它代表scrollview中的可显示区域,假如有一个scrollview,它的frame为(0,0,320,480),而它的contentSize为(320,960).也就是说,这个scrollview整个内容的大小为(320,960),要通过上下滑动scrollview来查看(320,480)后的内容。
2.contentOffset 是scrollview当前显示区域顶点相对于frame顶点的偏移量,比如1中描述的情况,若滑动到最下方,contentoffset就是(0 ,480),也就是y偏移了480
3.contentInset 是scrollview中contentView.frame.origin与scrollview.frame.origin的关系,比如contentView的frame为(0,30,320,480),那么contentInset则为(0, 30)。即为内容从scrollview的(0,30)处开始显示。
这里写图片描述

0 0
原创粉丝点击