如何在SnapKit中按比例设置边缘偏移量与超视图高度的大小

时间:2016-12-07 15:38:07

标签: ios swift autolayout snapkit

以下是我尝试使用SnapKit实现的内容,但由于显而易见的原因,它无法编译。

contentView.snp.makeConstraints { (make) in
   make.top.equalTo(scrollView).offset(scrollView.snp.height * 0.2) //ERROR - Binary operator cannot be applied to type ConstraintItem and Double 
} 

1 个答案:

答案 0 :(得分:3)

我会做这样的事情:

contentView.snp.makeConstraints { make in
    make.height.equalToSuperview().dividedBy(2)
    make.left.right.bottom.equalToSuperview()
}