text AutoLayout ScrollView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text AutoLayout ScrollView相关的知识,希望对你有一定的参考价值。
self.scrollView.addSubview(self.contentView)
self.contentView.addSubview(self.contentLabel)
self.scrollView.snp.makeConstraints { (make) in
make.bottom.equalTo(self.view)
make.left.right.equalTo(self.view)
make.top.equalTo(self.timeLabel.snp.bottom).offset(10)
}
self.contentView.snp.makeConstraints { (make) in
make.left.right.equalTo(self.scrollView)
make.top.equalTo(self.scrollView)
make.bottom.equalTo(self.scrollView)
make.centerX.equalTo(self.scrollView)
}
self.contentLabel.snp.makeConstraints({ (make) in
make.left.equalTo(self.contentView).offset(15)
make.right.equalTo(self.contentView).offset(-15)
make.top.equalTo(self.contentView).offset(10)
make.bottom.equalTo(self.contentView).offset(-15)
})
以上是关于text AutoLayout ScrollView的主要内容,如果未能解决你的问题,请参考以下文章
SwiftUI 的正确布局方式(类似于 Autolayout)
为啥我的 UILabel 的 AutoLayout 不起作用
java 来自http://stackoverflow.com/questions/4628800/android-how-to-check-if-a-view-inside-of-scrollvie
IOS Autolayout
基于Text精确计算一个UITableViewCell的Height
AutoLayout