Swift version: 5.6
Auto Layout constraints a powerful way of expressing your layouts, but when they go wrong they can be hard to debug. Fortunately, all constraints have a built-in identifier
property that you can use to identify them uniquely.
It’s an optional string so you don’t have to provide anything, but if you do set an identifier you’ll find it much easier to see where your constraints are going wrong because Xcode will use those identifiers in its debug logs.
If you create your constraints in code, just set the identifier
property to a string as you go – “Main Title Horizontal Center” for example. If you use Interface Builder, you can select any constraint and you’ll see a dedicated “Identifier” text property you can fill in.
There is literally no reason not to add identifiers to your constraints – they don’t affect your layouts at all, but they do make layout debugging significantly easier!
SPONSORED Let’s face it, SwiftUI previews are limited, slow, and painful. Judo takes a different approach to building visually—think Interface Builder for SwiftUI. Build your interface in a completely visual canvas, then drag and drop into your Xcode project and wire up button clicks to custom code. Download the Mac App and start your free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.