zoukankan      html  css  js  c++  java
  • UIscrollview setcontentoffset

     

    转载  http://blog.csdn.net/nlforever/article/details/9324755

    UIscrollview类中  

      调用setcontentoffset实际上是改变view的坐标原点的位置

    画个图解释一下

     

                             content



                    frame

     


    CGPoint中的x,y分别指的是frame的左上角的content左上角的x,y之差。

     

    scrollView的几个属性contentSize、contentOffset、contentInset

     

     

     

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

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

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

     

    另外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;

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

    例如你在delegate方法

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

        return 100;

    }

    那么你的tabelview的contentsize就是(320, 4400)

  • 相关阅读:
    操作系统六文件管理
    Educational Codeforces Round 38 (Rated for Div. 2) ABCD
    51nod 1100 斜率最大
    51nod 最小方差
    51nod 1065 最小正子段和
    P1280 尼克的任务
    牛客小白月赛2
    Codeforces Round #210 (Div. 1) B 二分+dp
    江西财经大学第一届程序设计竞赛
    51nod 1596 搬货物
  • 原文地址:https://www.cnblogs.com/allanliu/p/4533228.html
Copyright © 2011-2022 走看看