• contentInset,contentsize和contentOffset区别


    contentInset,contentsize和contentOffset区别

     
    今天看别人用到了contentInset,觉得很迷糊,于是gogle了一下,搜到了一篇分析的很好的文章,转在这里,也混淆的童鞋大家一起学习一下

    -------------
    -------------------------------------------------

     
    UIEdgeInsets 设置包围tableView的坐标,typedef struct UIEdgeInsets {
    CGFloat top, left, bottom, right;  // specify amount to inset (positive) for each of the edges. values can be negative to 'outset'
    } UIEdgeInsets;
     
    里面分别是上,左,下,右的包围长度,往下拖动时,如果top 》0, 就会显示出来,如果小于0就会隐藏。
     
    offset//偏移量;
     
    contentInset,contentsize和contentOffset区别
    contentInset,contentsize和contentOffset区别
    图片:contentInset_results.jpg 
    contentInset,contentsize和contentOffset区别
    区别:

    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)



    ( 转自:http://blog.sina.com.cn/s/blog_67606b900100ri0r.html )

     

     
  • 相关阅读:
    springboot成神之——websocket发送和请求消息
    springboot成神之——发送邮件
    springboot成神之——spring文件下载功能
    springboot成神之——spring的文件上传
    springboot成神之——basic auth和JWT验证结合
    springboot成神之——Basic Auth应用
    leetcode-easy-array-122 best time to buy and sell stocks II
    leetcode-easy-array-31 three sum
    leetcode-mid-others-621. Task Scheduler
    leetcode-mid-math-371. Sum of Two Integers-NO-???
  • 原文地址:https://www.cnblogs.com/iOS-mt/p/4323451.html
Copyright © 2020-2023  润新知