如何显示?

时间:2019-04-17 15:50:41

标签: ios xcode constraints

我想制作一个类似的UI Login Screen,您会看到当我单击图像约束时,属性检查器又显示了一个菜单“自适应布局约束” Layout。 这是怎么发生的,我如何在项目中显示相同的菜单。谢谢。

1 个答案:

答案 0 :(得分:-1)

它看起来像一个具有@IBInspectable属性setAdaptiveLayout的自定义类

class AdaptiveLayoutConstraint: NSLayoutConstraint {
    @IBInspectable
    var setAdaptiveLayout: Bool {
        set {
            //doWhatYouWant
        }
        get {
            //doWhatYouWant
        }
    }
}