scrollView的几个属性contentSize contentOffset contentInset

来源:互联网 发布:matlab矩阵的乘法 编辑:程序博客网 时间:2024/05/20 12:51

scrollView的frame,是它的可视区,滚动的内容只能在该frame中能被看到,frame之外的都被屏蔽掉了。

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

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

contentInset是UIEdglInsets结构的变量,指定contentview的上 左 下 右边分别相对于scrollview上 左 下 右边的最大距离,可为负值;


另外UITableView是UIScrollView的子类,它们在上述属性又有所不同,tabelview的contentsize是由它的下列方法共同实现的

- (NSInteger)numberOfSections;

- (NSInteger)numberOfRowsInSection:(NSInteger)section;

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;

- (void)setTableHeaderView:(UIView *)view;
- (void)setTableFooterView:(UIView *)view;

它会自动计算所有的高度和来做为它的contentsize的height.


例如你在delegate方法

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return 100;

}

那么你的tabelview的contentsize就是(320, 4400),44为tableViewCell的默认高度。


转自:scrollView的几个属性contentSize contentOffset contentInset

原创粉丝点击