@@ -39,7 +39,7 @@ - (void)setUp
39
39
40
40
- (void )tearDown
41
41
{
42
- [self removeAllConstraintsFromViewAndSubviews: self .containerView];
42
+ [self .containerView autoRemoveConstraintsAffectingViewAndSubviews ];
43
43
44
44
[super tearDown ];
45
45
}
@@ -74,7 +74,7 @@ - (void)testRemoveConstraint
74
74
NSInteger constraintsCount = [self .view1.superview.constraints count ];
75
75
XCTAssert (constraintsCount > 0 , @" view1's superview should have constraints added to it." );
76
76
77
- [UIView removeConstraint :self .view1.superview.constraints[0 ]];
77
+ [UIView autoRemoveConstraint :self .view1.superview.constraints[0 ]];
78
78
NSInteger newConstraintsCount = [self .view1.superview.constraints count ];
79
79
XCTAssert (constraintsCount - newConstraintsCount == 1 , @" view1's superview should have one less constraint on it." );
80
80
@@ -95,7 +95,7 @@ - (void)testRemoveConstraintFromSingleView
95
95
NSInteger constraintsCount = [self .view1.constraints count ];
96
96
XCTAssert (constraintsCount > 0 , @" view1 should have a constraint added to it." );
97
97
98
- [UIView removeConstraint : constraint];
98
+ [UIView autoRemoveConstraint : constraint];
99
99
NSInteger newConstraintsCount = [self .view1.constraints count ];
100
100
XCTAssert (constraintsCount - newConstraintsCount == 1 , @" view1 should have one less constraint on it." );
101
101
}
@@ -119,7 +119,7 @@ - (void)testRemoveConstraintFromNotImmediateSuperview
119
119
NSInteger constraintsCount = [self .containerView.constraints count ];
120
120
XCTAssert (constraintsCount > 0 , @" containerView should have a constraint added to it." );
121
121
122
- [UIView removeConstraint : constraint];
122
+ [UIView autoRemoveConstraint : constraint];
123
123
NSInteger newConstraintsCount = [self .containerView.constraints count ];
124
124
XCTAssert (constraintsCount - newConstraintsCount == 1 , @" containerView should have one less constraint on it." );
125
125
}
@@ -129,12 +129,12 @@ - (void)testRemoveConstraintFromNotImmediateSuperview
129
129
*/
130
130
- (void )testRemoveConstraints
131
131
{
132
- NSArray *constraints = [self .containerView autoDistributeSubviews: @[self .view1, self .view2, self .view3, self .view4] alongAxis : ALAxisHorizontal withFixedSize: 10 .0f alignment: NSLayoutFormatAlignAllCenterY];
132
+ NSArray *constraints = [@[self .view1, self .view2, self .view3, self .view4] autoDistributeViewsAlongAxis : ALAxisHorizontal withFixedSize: 10 .0f alignment: NSLayoutFormatAlignAllCenterY];
133
133
134
134
NSInteger constraintsCount = [self .containerView.constraints count ];
135
135
XCTAssert (constraintsCount > 0 , @" containerView should have constraints added to it." );
136
136
137
- [UIView removeConstraints : constraints];
137
+ [UIView autoRemoveConstraints : constraints];
138
138
NSInteger newConstraintsCount = [self .containerView.constraints count ];
139
139
XCTAssert (newConstraintsCount == 0 , @" containerView should have no constraints on it." );
140
140
}
@@ -149,20 +149,9 @@ - (void)testRemove
149
149
NSInteger constraintsCount = [self .containerView.constraints count ];
150
150
XCTAssert (constraintsCount > 0 , @" containerView should have a constraint added to it." );
151
151
152
- [constraint remove ];
152
+ [constraint autoRemove ];
153
153
NSInteger newConstraintsCount = [self .containerView.constraints count ];
154
154
XCTAssert (constraintsCount - newConstraintsCount == 1 , @" containerView should have one less constraint on it." );
155
155
}
156
156
157
- /* *
158
- Recursive helper method to remove all constraints from a given view and its subviews.
159
- */
160
- - (void )removeAllConstraintsFromViewAndSubviews : (UIView *)view
161
- {
162
- [UIView removeConstraints: view.constraints];
163
- for (UIView *subview in view.subviews ) {
164
- [self removeAllConstraintsFromViewAndSubviews: subview];
165
- }
166
- }
167
-
168
157
@end
0 commit comments