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的主要内容,如果未能解决你的问题,请参考以下文章