问题
I have gone through a couple of Auto Layout tutorials such as this. However I am still not clear on what the following options do in the pin dialog
What are the differences between standard value, manual values, and canvas values?
What does the constrain to margin checkbox do?
What does align do?
回答1:
What are the differences between standard value, manual values, and canvas values?
Standard value uses "the recommended spacing for constraints that specify distance between items", which is usually around 10 points.
Current canvas value copies the value from how you have the objects currently displayed on the canvas.
Manual values are whatever you want.
What does the constrain to margin checkbox do?
This constrains to a container view's margins instead of its edges. From the docs:
“Horizontal and vertical constraints to a container view can be to the margin or to the edge. Margins correspond to the values in the layoutMargins atttribute of UIView and specify recommended minimal distances between an edge of a container view and the corresponding edge of a child.”
You can set a view's margins using the layoutMargins property.
What does align do?
This creates a constraint that edges or center of one view should be aligned with edges or center of another view. For example, in a column of text views, you might want every text field to have their leading and trailing edges aligned.
来源:https://stackoverflow.com/questions/29705747/what-do-use-standard-value-and-constrain-to-margins-mean-in-auto-layout