如何在 SnapKit 中按值增加视图高度?
Posted
技术标签:
【中文标题】如何在 SnapKit 中按值增加视图高度?【英文标题】:How to increase height of view by value in SnapKit? 【发布时间】:2020-06-11 11:16:50 【问题描述】:我想在 SnapKit 中将高度增加 100,但我不知道该怎么做。它应该是这样的,但它不起作用
mainView.snp.makeConstraints make in
make.center.equalToSuperview()
make.height.equalTo(otherView.snp.height + 100) // problem here
【问题讨论】:
【参考方案1】:您可以使用inset
或offset
:
make.height.equalTo(otherView.snp.height).offset(100)
【讨论】:
以上是关于如何在 SnapKit 中按值增加视图高度?的主要内容,如果未能解决你的问题,请参考以下文章