Contents

addLayoutGuide(_:)

Adds the provided layout guide to the view.

Declaration

func addLayoutGuide(_ guide: NSLayoutGuide)

Parameters

  • guide:

    The layout guide to be added.

Discussion

This method adds the provided layout guide to the end of the view’s layoutGuides array. It also assigns the view to the guide’s owningView property. Each guide can have only one owning view.

After the guide has been added to a view, it can participate in Auto Layout constraints with that view’s hierarchy.

See Also

Managing Layout Guides