Contents

setContentCompressionResistancePriority(_:for:)

Sets the priority with which a view resists being made smaller than its intrinsic size.

Declaration

func setContentCompressionResistancePriority(_ priority: NSLayoutConstraint.Priority, for orientation: NSLayoutConstraint.Orientation)

Parameters

  • priority:

    The new priority.

  • orientation:

    The orientation for which the compression resistance priority should be set.

Discussion

Custom views should set default values for both orientations on creation, based on their content, typically to defaultLow or defaultHigh. When creating user interfaces, the layout designer can modify these priorities for specific views when the overall layout design requires different tradeoffs than the natural priorities of the views being used in the interface.

Subclasses should not override this method.

See Also

Measuring in Auto Layout