我可以通过使用heightAnchor来获取数字值吗?

时间:2018-10-01 05:27:33

标签: ios swift autolayout nslayoutconstraint snapkit

我是一个新的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)")

它返回我为空。

0 个答案:

没有答案