I found the NSLayoutConstraint.Priority.dragThatCannotResizeWindow to be very useful. Though I usually write constraints with code, it sometimes gets too long and I want to move them to IB.
How I can set the priority of a constraint to be dragThatCannotResizeWindow in Interface Builder? There are only 3 options, corresponding to required, defaultHigh, defaultLow in code.
I tried looking up dragThatCannotResizeWindow storyboard on Google, and nothing useful came up (< 50 results!)
There are also a bunch of other priorities like dragThatCanResizeWindow, and fittingSizeCompression, which I'm also interested about.
One guess I had was that unlike required, defaultHigh, defaultLow, these "semantic" priorities don't have a fixed value, and hence cannot be selected in the storyboard.* Is this true? If so, what does their values depend on?
*This is kind of a weak reason since semantic colors like "label" and "background" don't have a fixed value either and they are in IB...
