You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Removes all explicit constraints that affect the view.
90
-
WARNING: Apple's constraint solver is not optimized for large-scale constraint changes; you may encounter major performance issues after using this method.
90
+
WARNING: Apple's constraint solver is not optimized for large-scale constraint removal; you may encounter major performance issues after using this method.
91
91
NOTE: This method preserves implicit constraints, such as intrinsic content size constraints, which you usually do not want to remove. */
92
92
- (void)autoRemoveConstraintsAffectingView;
93
93
94
94
/** Removes all constraints that affect the view, optionally including implicit constraints.
95
-
WARNING: Apple's constraint solver is not optimized for large-scale constraint changes; you may encounter major performance issues after using this method.
95
+
WARNING: Apple's constraint solver is not optimized for large-scale constraint removal; you may encounter major performance issues after using this method.
96
96
NOTE: Implicit constraints are auto-generated lower priority constraints, and you usually do not want to remove these. */
/** Recursively removes all explicit constraints that affect the view and its subviews.
100
-
WARNING: Apple's constraint solver is not optimized for large-scale constraint changes; you may encounter major performance issues after using this method.
100
+
WARNING: Apple's constraint solver is not optimized for large-scale constraint removal; you may encounter major performance issues after using this method.
101
101
NOTE: This method preserves implicit constraints, such as intrinsic content size constraints, which you usually do not want to remove. */
/** Recursively removes all constraints from the view and its subviews, optionally including implicit constraints.
105
-
WARNING: Apple's constraint solver is not optimized for large-scale constraint changes; you may encounter major performance issues after using this method.
105
+
WARNING: Apple's constraint solver is not optimized for large-scale constraint removal; you may encounter major performance issues after using this method.
106
106
NOTE: Implicit constraints are auto-generated lower priority constraints, and you usually do not want to remove these. */
@@ -263,9 +250,15 @@ typedef void(^ALConstraintsBlock)(void); // a block of method calls to the UI
263
250
/** Distributes the views in this array equally along the selected axis in their superview. Views will be the same size (variable) in the dimension along the axis and will have spacing (fixed) between them. */
/** Distributes the views in this array equally along the selected axis in their superview. Views will be the same size (variable) in the dimension along the axis and will have spacing (fixed) between them, with optional insets from the first and last views to their superview. */
/** Distributes the views in this array equally along the selected axis in their superview. Views will be the same size (fixed) in the dimension along the axis and will have spacing (variable) between them. */
/** Distributes the views in this array equally along the selected axis in their superview. Views will be the same size (fixed) in the dimension along the axis and will have spacing (variable) between them, with optional insets from the first and last views to their superview. */
0 commit comments