iOS-SDAutoLayout-自动布局及自适应Cell高度

SDAutoLayout

One line of code to implement automatic layout. 一行代码搞定自动布局!支持Cell和Tableview高度自适应,Label和ScrollView内容自适应,致力于做最简单易用的AutoLayout库。The most easy way for autoLayout. Based on runtime.

1、下载 SDAutoLayout 很简单,而且只有两个分类

image.png

2、注释的也很清楚

image.png

3、下面是我自己做自动布局和自适应Cell高度测试的例子

自动布局的代码使用非常简单

 _headImageView.sd_layout
    .leftEqualToView(self.contentView)
    .topSpaceToView(self.contentView, 10)
    .rightEqualToView(self.contentView)
    .heightIs(200)
    .widthIs([UIScreen mainScreen].bounds.size.width);

自适应Cell高度的代码也很简单

第一步,在给Cell赋值的时候,赋值结束需要把Cell的最下面的一个组件明确给出来

- (void)setSdModel:(SDModel *)sdModel {
    
    _titleLabel.text=sdModel.title;
    _timeLabel.text=sdModel.time;
    
    // _titleLabel 自适应高度,不需要手动的计算文本的高度
    _titleLabel.sd_layout.autoHeightRatio(0);
    
    
    // lable的text为attributedString 时,需要进行设置
    // _titleLabel.isAttributedContent =YES;
    
    // _timeLabel 是最后一个组件  ,bottomMargin 是 距离底部的距离
    [self setupAutoHeightWithBottomView:_timeLabel bottomMargin:10];

    //  如果不知道哪个view是最后一个,可以传递 可能是最后一个view的 数组
    // [self setupAutoHeightWithBottomViewsArray:<#(NSArray *)#> bottomMargin:<#(CGFloat)#>]
}

第二步, heightForRowAtIndexPath 方法里面不应返回高度

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    
//  ForIndexPath: 当前的cell的位置
//  model: 当前cell的数据模型(需要使用KVC进行赋值)
//  keyPath: 就是cell的数据模型对象,此文中就是cell.sdModel
//  cellClass: 就是cell的类名
//  contentViewWidth: cell的宽度

    return [tableView cellHeightForIndexPath:indexPath model:[self.dataSource objectAtIndex:indexPath.row] keyPath:@"sdModel" cellClass:[mySDCell class] contentViewWidth:self.view.frame.size.width];
}

ViewController

//
//  ViewController.m
//  iOSXC
//
//  Created by 尼古拉斯·常·穆罕默德 on 2017/11/22.
//  Copyright © 2017年 CHJ. All rights reserved.
//

#import "ViewController.h"

#import "SDAutoLayout.h"
#import "mySDCell.h"
#import "SDModel.h"

@interface ViewController () <UITableViewDelegate, UITableViewDataSource>

@property (nonatomic,strong) NSMutableArray *dataSource;
@property (nonatomic,strong) UITableView *tableView;

@end

@implementation ViewController

#pragma mark - 生命周期
- (void)viewDidLoad {
    [super viewDidLoad];
   
    [self initSubView];

}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


#pragma mark - 初始化子控件

- (void)initSubView {
    // 先添加子组件,再进行子组件的布局
    [self.view addSubview:self.tableView];
    self.tableView.sd_layout.leftEqualToView(self.view).rightEqualToView(self.view).topEqualToView(self.view).bottomEqualToView(self.view);

}


#pragma mark - set  and   get

- (UITableView *)tableView {
    if (!_tableView){
        _tableView=[[UITableView alloc]init];
        _tableView.delegate=self;
        _tableView.dataSource=self;
    }
    return _tableView;
}

- (NSMutableArray *)dataSource {
    if (!_dataSource) {
        _dataSource = [NSMutableArray new];
        
        NSArray *data = @[@{@"imageURL": @"",
                            @"title":@"上面写到要将控件的布局写在同一个方法中,方便之后查看与修改,但关于布局的选型也是需要精心考虑的,如果直接使用CGRectMake可读性会很差,因为只通过x,y,width,height是不能确定View与View之间的位置关系的。 github上关于iOS布局的第三方也是有很多的,看公司架构而定,个人比较喜欢SDAutoLayout,这个布局库语法简单,功能完善,而且代码可读性很好。",
                            @"time":@"2017.11.30"
                            },
                          @{@"imageURL": @"",
                            @"title":@"storyboard和xib是苹果提供给开发者的一种可视化编程方式,对于它的好与坏,想必各位都有自己的看法,但我在项目中是极力避免使用xib来布局的,因为我总认为它的缺点多过优点",
                            @"time":@"2017.11.30"
                            },
                          @{@"imageURL": @"",
                            @"title":@"对于复杂的、动态生成的界面,建议使用手工编写界面。",
                            @"time":@"2017.11.30"
                            },
                          @{@"imageURL": @"",
                            @"title":@"对于需要统一风格的按钮或UI控件,建议使用手工用代码来构造。方便之后的修改和复用。",
                            @"time":@"2017.11.30"
                            },
                          @{@"imageURL": @"",
                            @"title":@"在iOS开发领域内,UIViewController承载了非常多的事情,比如View的初始化,业务逻辑,事件响应,数据加工等等,当然还有更多我现在也列举不出来,但是我们知道有一件事情Controller肯定逃不掉要做:协调V和M。也就是说,不管怎么拆,协调工作是拆不掉的根据第一心法拆开来的东西,很有可能还是强业务相关的,这种情况有的时候无法避免。但我们拆也要拆得好看,拆出来的部分最好能够归成某一类对象,然后最好能够抽象出一个通用逻辑出来,使他能够复用。即使不能抽出通用逻辑,那也尽量抽象出一个protocol。拆分的粒度要尽可能大一点,封装得要透明一些。唐巧说一切隐藏都是对代码复杂性的增加,除非它带来了好处,这在一定程度上有点道理,没有好处的隐藏确实都不好(笑)。提高抽象度事实上就是增加封装的力度,将一个负责的业务抽象成只需要很少的输入就能完成,就是高度抽象。嗯,继承很多层,这种做法虽然也提高了抽象程度,但我不建议这么玩。我不确定唐巧在这里说的隐藏跟我说的封装是不是同一个概念,但我在这里想提倡的是尽可能提高抽象程度",
                            @"time":@"2017.11.30"
                            }];
        
       
        for (int i=0; i<[data count]; i++) {
            NSDictionary *diction=[data objectAtIndex:i];
            SDModel *model=[SDModel new];
            
            [model setValuesForKeysWithDictionary:diction];
            
            [_dataSource addObject:model];
        }
    }
    return _dataSource;
}



#pragma mark -UITableView Delegete and dataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
    return [self.dataSource count];
}
- (mySDCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    mySDCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (!cell) {
        cell=[[mySDCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
        cell.selectionStyle=UITableViewCellSelectionStyleNone;
    }
    
    cell.sdModel = [self.dataSource objectAtIndex:indexPath.row];
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    return [tableView cellHeightForIndexPath:indexPath model:[self.dataSource objectAtIndex:indexPath.row] keyPath:@"sdModel" cellClass:[mySDCell class] contentViewWidth:self.view.frame.size.width];
}

@end

Model

//
//  SDModel.h
//  iOSXC
//
//  Created by 尼古拉斯·常·穆罕默德 on 2017/11/30.
//  Copyright © 2017年 CHJ. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface SDModel : NSObject

@property (nonatomic,copy)NSString *imageURL;
@property (nonatomic,copy)NSString *title;
@property (nonatomic,copy)NSString *time;

@end

Cell.h

//
//  mySDCell.h
//  iOSXC
//
//  Created by 尼古拉斯·常·穆罕默德 on 2017/11/30.
//  Copyright © 2017年 CHJ. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "SDModel.h"

@interface mySDCell : UITableViewCell

// 声明数据对象
@property (nonatomic, strong)SDModel *sdModel;

@end

Cell.m

//
//  mySDCell.m
//  iOSXC
//
//  Created by 尼古拉斯·常·穆罕默德 on 2017/11/30.
//  Copyright © 2017年 CHJ. All rights reserved.
//

#import "mySDCell.h"
#import "SDAutoLayout.h"


@interface mySDCell ()

@property (nonatomic, strong)UIImageView *headImageView;
@property (nonatomic, strong)UILabel *titleLabel;
@property (nonatomic, strong)UILabel *timeLabel;

@end

@implementation mySDCell

- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        [self initSubViews];
    }
    return self;
}

- (void)initSubViews {
    
    _headImageView = [UIImageView new];
    _headImageView.backgroundColor=[UIColor redColor];
  
    
    _titleLabel = [[UILabel alloc]init];
    _titleLabel.textColor = [UIColor blackColor];

    _timeLabel = [[UILabel alloc]init];
    _timeLabel.textAlignment = NSTextAlignmentRight;
    _timeLabel.font = [UIFont systemFontOfSize:12.0];
    
    
    // 统一添加子组件,先添加子组件,在进行子组件的布局
    [self.contentView sd_addSubviews:@[_headImageView, _titleLabel, _timeLabel]];
  

    // 子组件布局
    _headImageView.sd_layout
      .leftEqualToView(self.contentView)
      .topSpaceToView(self.contentView,10)
      .rightEqualToView(self.contentView)
      .heightIs(200)
      .widthIs([UIScreen mainScreen].bounds.size.width);
    
    _titleLabel.sd_layout
      .leftSpaceToView(self.contentView, 10)
      .topSpaceToView(self.headImageView, 10)
      .rightSpaceToView(self.contentView, 10)
      .heightIs(30)
      .widthIs([UIScreen mainScreen].bounds.size.width-20);
    
    _timeLabel.sd_layout
      .topSpaceToView(self.titleLabel, 10)
      .rightSpaceToView(self.contentView, 10)
      .heightIs(20);

}



- (void)setSdModel:(SDModel *)sdModel {
    
    _titleLabel.text=sdModel.title;
    _timeLabel.text=sdModel.time;
    
    
    // _titleLabel 自适应高度,不需要手动的计算文本的高度
    _titleLabel.sd_layout.autoHeightRatio(0);
    
    
    // lable的text为attributedString 时,需要进行设置
    // _titleLabel.isAttributedContent =YES;
    
    [self setupAutoHeightWithBottomView:_timeLabel bottomMargin:10];

    //  设置label最大显示的行数
    // [_titleLabel setMaxNumberOfLinesToShow:10];


}

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 最近喂猫咪,猫咪向我主动跑过来的瞬间让我觉得超级幸福,这也许是我每天静谧的一段时光吧
    x1x阅读 80评论 0 0
  • 不轻易随信手放,恰似繁星耀眼光。 简单谐意塞满屋,春意袭心醉自酿。
    思索者阅读 257评论 1 2
  • 突然间翻开大学时候的照片,看到自己当时的样子,顶着一头没有打理的毛躁的头发,最常的发型就是随意的把所有头发扎起来,...
    伟佳Vidia阅读 395评论 0 0
  • 我是愛哭的 哭的淅瀝嘩啦 別笑我 哭沒有什麼不好 太久沒有哭、眼涙會迷路 對眼睛不好 長大了還哭 嚇得週邊的人不知...
    蔡振源阅读 357评论 0 5