A rectangular area that can interact with Auto Layout.
SDK
- macOS 10.11+
Framework
- App
Kit
Declaration
class NSLayoutGuide : NSObject
Overview
Use layout guides to replace the dummy views you may have created to represent inter-view spaces or encapsulation in your user interface. Traditionally, there were a number of Auto Layout techniques that required dummy views. A dummy view is an empty view that does not have any visual elements of its own and serves only to define a rectangular region in the view hierarchy. For example, if you wanted to use constraints to define the size or location of an empty space between views, you needed to use a dummy view to represent that space. If you wanted to center a group of objects, you needed a dummy view to contain those objects. Similarly, dummy views could be used to contain and encapsulate part of your user interface. Dummy views let you break up a large, complex user interface into self-contained, modular chunks. When used properly, they could greatly simplify your Auto Layout constraint logic.
There are a number of costs associated with adding dummy views to your view hierarchy. First, there is the cost of creating and maintaining the view itself. Second, the dummy view is a full member of the view hierarchy, which means that it adds overhead to every task the hierarchy performs. Worst of all, the invisible dummy view can intercept messages that are intended for other views, causing problems that are very difficult to find.
The NSLayout
class is designed to perform all the tasks previously performed by dummy views, but to do it in a safer, more efficient manner. Layout guides are not views. They do not use as much memory, and they do not participate in the view hierarchy. Instead, they simply define a rectangular region in their owning view’s coordinate system that can interact with Auto Layout.
Creating Layout Guides
To create a layout guide, perform the following steps:
Instantiate a new layout guide.
Add the layout guide to a view by calling the view’s
add
method .Layout Guide(_:) Define the position and size of the layout guide using Auto Layout.
You can use these guides to define the space between elements in your layout. The following example shows how to use layout guides to define an equal spacing between a series of views.
let space1 = NSLayoutGuide()
view.addLayoutGuide(space1)
let space2 = NSLayoutGuide()
view.addLayoutGuide(space2)
space1.widthAnchor.constraintEqualToAnchor(space2.widthAnchor).active = true
saveButton.trailingAnchor.constraintEqualToAnchor(space1.leadingAnchor).active = true
cancelButton.leadingAnchor.constraintEqualToAnchor(space1.trailingAnchor).active = true
cancelButton.trailingAnchor.constraintEqualToAnchor(space2.leadingAnchor).active = true
clearButton.leadingAnchor.constraintEqualToAnchor(space2.trailingAnchor).active = true
A layout guide can also act as a “black box” that contains other views and controls, letting you encapsulate parts of your view and break up your layout into modular chunks.
let container = NSLayoutGuide()
view.addLayoutGuide(container)
// Layout the contents of the container
button.lastBaselineAnchor.constraintEqualToAnchor(textField.lastBaselineAnchor).active = true
button.leadingAnchor.constraintEqualToAnchor(container.leadingAnchor).active = true
textField.leadingAnchor.constraintEqualToAnchor(button.trailingAnchor, constant: 8.0).active = true
textField.trailingAnchor.constraintEqualToAnchor(container.trailingAnchor).active = true
textField.topAnchor.constraintEqualToAnchor(container.topAnchor).active = true
textField.bottomAnchor.constraintEqualToAnchor(container.bottomAnchor).active = true
// Set exterior constraints.
container.leadingAnchor.constraintEqualToAnchor(margins.leadingAnchor).active = true
container.trailingAnchor.constraintEqualToAnchor(margins.trailingAnchor).asctive = true
container.topAnchor.constraintEqualToAnchor(margins.topAnchor).active = true
Note
Layout constraints do not fully encapsulate their contents. The system still compares the priority of optional constraints inside the layout guide with the priority of optional constraints outside the guide.