After doing some visual layout in Interface Builder I've created some constraints that I want to access at runtime. Is there a way to label or identify constraints in Interface Builder so they can be looked-up later?
The reason I want to do this is I need to perform some calculation base upon the constraints that are visually specified. I am aware that Apple has provided the Visual Format Language and I could specify the constraints programmatically in a controller. I rather not use this approach so I don't lose the design time feedback of IB.
Edit
Making a referencing outlet did work, but the question still stands.
Take the IBOutlet of your auto layout constraint.
There is one property called constant in the NSLayoutConstraint class.
For eg, you've taken the IBOutlet of height constraint of any of the views from your IB, and you want to change it's height programmatically, all you need to do is:
After doing this, you need to update all other views in the view hierarchy of the superview. To do this you'll need to write below line:
For better user experience, you can put this line inside your animations block for smoother transition effects,
Hope this helps..
However if you set up your constraint in code, do the following:
For these constraints you have set up in storyboard, but you must set identifier in code:
Also you could link constraint to properties of your controller as you do for any other components. Just ctrl drag it into your code:
And then it will be accessible in code of your controller as property:
And you could change it value for example:
Just adding on to @vacawama's answer. You can write a
UIView
category and pull out constraints using a simple function, as opposed to copy/pasting loops everywhere you need to find a constraint:.h file:
.m file:
Update:
As explained by Bartłomiej Semańczyk in his answer, there is now an Identifier field visible in the Attributes Inspector for the
NSLayoutConstraint
making it unnecessary to expose this field yourself. Just select the constraint in the Document Outline view or in the Storyboard view and then add an identifier in the Attributes Inspector on the right.Earlier Answer:
Yes, this can be done.
NSLayoutConstraint
has a property calledidentifier
than can be exposed in Interface Builder and assigned. To demo this, I created a Single View Application that has a single subview that is a red box. This subview has 4 constraints: width, height, centered horizontally in container, centered vertically in container. I gave the width constraint the identifierredBoxWidth
by doing the following:Click on the width constraint in the Document Layout View. Then in the Identity Inspector under User Defined Runtime Attributes, click on the
+
under Key Path. Change keyPath to identifier, change the Type Boolean to String, and set the Value toredBoxWidth
.Then in
ViewDidLoad
it is possible to find the constraint by name and change its value:What about this: