以下是我尝试使用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
}
答案 0 :(得分:3)
我会做这样的事情:
contentView.snp.makeConstraints { make in
make.height.equalToSuperview().dividedBy(2)
make.left.right.bottom.equalToSuperview()
}