我是一个新的iOS编程人员,在技术方面我很缺乏。我遇到一个问题,我正在以编程方式创建一个应用程序,当我使用SnapKit
库设置autoLayout
时,我无法获得最佳视图。
这是我的代码:
detailExploreEachCell.callButton.snp.makeConstraints { (make) in
make.trailing.equalTo(detailExploreEachCell.divideView.snp.leading)
make.height.equalTo(profileOverlayComponents.opacityDetailEachExplore).dividedBy(4.5)
make.width.equalTo(profileOverlayComponents.opacityDetailEachExplore).dividedBy(2.5)
make.top.equalTo(profileOverlayComponents.profileView.snp.bottom).offset(-20)
}
现在我想将数值高度作为数字获取,但我无法获取
print("Height of call button \(detailExploreEachCell.callButton.frame.size.height)")
它返回我为空。