美文网首页
2020-05-19 iOS 使用SDAutoLayout实现控

2020-05-19 iOS 使用SDAutoLayout实现控

作者: 缘來諟夢 | 来源:发表于2020-05-19 09:39 被阅读0次

参考文档:使用SDAutoLayout实现控件根据内容进行宽度自适应和高度自适应
举例,让label高度自适应

contentLabel=[[UILabelalloc]init];[contentScroll addSubview:contentLabel];
//第一步:autoHeightRatio(0)
contentLabel.sd_layout.leftEqualToView(contentScroll).topEqualToView(contentScroll).rightEqualToView(contentScroll).autoHeightRatio(0);
//第二步:
[self.view setupAutoHeightWithBottomView:contentLabel bottomMargin:0];

相关文章

网友评论

      本文标题:2020-05-19 iOS 使用SDAutoLayout实现控

      本文链接:https://www.haomeiwen.com/subject/zmsvohtx.html