1

这是我尝试使用 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 
} 
4

1 回答 1

4

我会做这样的事情:

contentView.snp.makeConstraints { make in
    make.height.equalToSuperview().dividedBy(2)
    make.left.right.bottom.equalToSuperview()
}
于 2017-01-09T15:01:03.667 回答