zoukankan      html  css  js  c++  java
  • TableView行缩进 自定义cell时候

    TableView行缩进
    -(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
       
      return indexPath.row + 10;
       
    }
    如果是自定义cell  需要在cell中重写这个方法
    - (void)layoutSubviews
    {
        [super layoutSubviews];
        float indentPoints = self.indentationLevel * self.indentationWidth;
     
        self.contentView.frame = CGRectMake(
            indentPoints,
            self.contentView.frame.origin.y,
            self.contentView.frame.size.width - indentPoints, 
            self.contentView.frame.size.height
        );
    }
  • 相关阅读:
    @hdu
    @51nod
    @51nod
    @51nod
    JS-正则表达式常规运用
    CSS-复选框默认样式修改
    Vue-路由传参query与params
    Vue-阻止页面回退
    Vue-表单提交
    JS-原生的ajax
  • 原文地址:https://www.cnblogs.com/gaojingxuan/p/4942901.html
Copyright © 2011-2022 走看看