forked from Tricertops/KeepLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSArray+KeepLayout.m
480 lines (299 loc) · 11.2 KB
/
NSArray+KeepLayout.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
//
// NSArray+KeepLayout.m
// Keep Layout
//
// Created by Martin Kiss on 23.6.13.
// Copyright (c) 2013 Triceratops. All rights reserved.
//
#import "NSArray+KeepLayout.h"
#import "KeepAttribute.h"
#import "UIView+KeepLayout.h"
@implementation NSArray (KeepLayout)
#pragma mark General
- (BOOL)keep_onlyContainsUIViews {
for (UIView *view in self) {
if ( ! [view isKindOfClass:[UIView class]]) {
return NO;
}
}
return YES;
}
- (KeepGroupAttribute *)keep_groupAttributeForSelector:(SEL)selector {
KeepAssert([self keep_onlyContainsUIViews], @"%@ can only be called on array of UIView objects", NSStringFromSelector(selector));
return [[KeepGroupAttribute alloc] initWithAttributes:[self valueForKeyPath:NSStringFromSelector(selector)]];
}
- (KeepGroupAttribute *)keep_groupAttributeForSelector:(SEL)selector relatedView:(UIView *)relatedView {
KeepAssert([self keep_onlyContainsUIViews], @"%@ can only be called on array of UIView objects", NSStringFromSelector(selector));
NSMutableArray *builder = [[NSMutableArray alloc] initWithCapacity:self.count];
for (UIView *view in self) {
KeepAttribute *(^block)(UIView *) = [view valueForKeyPath:NSStringFromSelector(selector)];
[builder addObject:block(relatedView)];
}
return [[KeepGroupAttribute alloc] initWithAttributes:builder];
}
- (void)keep_invoke:(SEL)selector each:(void(^)(UIView *view))block {
KeepAssert([self keep_onlyContainsUIViews], @"%@ can only be called on array of UIView objects", NSStringFromSelector(selector));
for (UIView *view in self) {
block(view);
}
}
- (void)keep_invoke:(SEL)selector eachTwo:(void(^)(UIView *this, UIView *next))block {
KeepAssert([self keep_onlyContainsUIViews], @"%@ can only be called on array of UIView objects", NSStringFromSelector(selector));
if (self.count < 2) return;
for (NSUInteger index = 0; index < self.count - 1; index++) {
UIView *this = [self objectAtIndex:index];
UIView *next = [self objectAtIndex:index + 1];
block(this, next);
}
}
#pragma mark Dimensions
- (KeepAttribute *)keepWidth {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepHeight {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepSize {
return [self keep_groupAttributeForSelector:_cmd];
}
- (void)keepSize:(CGSize)size {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepSize:size];
}];
}
- (void)keepSize:(CGSize)size priority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepSize:size priority:priority];
}];
}
- (KeepAttribute *)keepAspectRatio {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *(^)(UIView *))keepWidthTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepHeightTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepSizeTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (void)keepWidthsEqualWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd eachTwo:^(UIView *this, UIView *next) {
this.keepWidthTo(next).equal = KeepValueMake(1, priority);
}];
}
- (void)keepHeightsEqualWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd eachTwo:^(UIView *this, UIView *next) {
this.keepHeightTo(next).equal = KeepValueMake(1, priority);
}];
}
- (void)keepSizesEqualWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd eachTwo:^(UIView *this, UIView *next) {
this.keepSizeTo(next).equal = KeepValueMake(1, priority);
}];
}
- (void)keepWidthsEqual {
[self keepWidthsEqualWithPriority:KeepPriorityRequired];
}
- (void)keepHeightsEqual {
[self keepHeightsEqualWithPriority:KeepPriorityRequired];
}
- (void)keepSizesEqual {
[self keepSizesEqualWithPriority:KeepPriorityRequired];
}
#pragma mark Superview Insets
- (KeepAttribute *)keepLeftInset {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepRightInset {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepTopInset {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepBottomInset {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepInsets {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepHorizontalInsets {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepVerticalInsets {
return [self keep_groupAttributeForSelector:_cmd];
}
- (void)keepInsets:(UIEdgeInsets)insets priority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepInsets:insets priority:priority];
}];
}
- (void)keepInsets:(UIEdgeInsets)insets {
[self keepInsets:insets priority:KeepPriorityRequired];
}
#pragma mark Center
- (KeepAttribute *)keepHorizontalCenter {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepVerticalCenter {
return [self keep_groupAttributeForSelector:_cmd];
}
- (KeepAttribute *)keepCenter {
return [self keep_groupAttributeForSelector:_cmd];
}
- (void)keepCenteredWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepCenteredWithPriority:priority];
}];
}
- (void)keepHorizontallyCenteredWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepHorizontallyCenteredWithPriority:priority];
}];
}
- (void)keepVerticallyCenteredWithPriority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepVerticallyCenteredWithPriority:priority];
}];
}
- (void)keepCenter:(CGPoint)center priority:(KeepPriority)priority {
[self keep_invoke:_cmd each:^(UIView *view) {
[view keepCenter:center priority:priority];
}];
}
- (void)keepCentered {
[self keepCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepHorizontallyCentered {
[self keepHorizontallyCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepVerticallyCentered {
[self keepVerticallyCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepCenter:(CGPoint)center {
[self keepCenter:center priority:KeepPriorityRequired];
}
#pragma mark Offsets
- (KeepAttribute *(^)(UIView *))keepLeftOffset {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepRightOffset {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepTopOffset {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepBottomOffset {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (void)keepHorizontalOffsets:(KeepValue)value {
[self keep_invoke:_cmd eachTwo:^(UIView *this, UIView *next) {
this.keepRightOffsetTo(next).equal = value;
}];
}
- (void)keepVerticalOffsets:(KeepValue)value {
[self keep_invoke:_cmd eachTwo:^(UIView *this, UIView *next) {
this.keepBottomOffsetTo(next).equal = value;
}];
}
#pragma mark Alignments
- (KeepAttribute *(^)(UIView *))keepLeftAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepRightAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepTopAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepBottomAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepVerticalAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepHorizontalAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (KeepAttribute *(^)(UIView *))keepBaselineAlignTo {
return ^KeepAttribute *(UIView *view) {
return [self keep_groupAttributeForSelector:_cmd relatedView:view];
};
}
- (void)keep_alignedSelector:(SEL)selector invokeSelector:(SEL)invokeSelector value:(KeepValue)value {
[self keep_invoke:selector eachTwo:^(UIView *this, UIView *next) {
KeepAttribute *(^block)(UIView *) = [this valueForKey:NSStringFromSelector(invokeSelector)];
KeepAttribute *attribute = block(next);
attribute.equal = value;
}];
}
- (void)keepLeftAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepLeftAlignTo) value:value];
}
- (void)keepRightAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepRightAlignTo) value:value];
}
- (void)keepTopAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepTopAlignTo) value:value];
}
- (void)keepBottomAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepBottomAlignTo) value:value];
}
- (void)keepVerticalAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepVerticalAlignTo) value:value];
}
- (void)keepHorizontalAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepHorizontalAlignTo) value:value];
}
- (void)keepBaselineAlignments:(KeepValue)value {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepBaselineAlignTo) value:value];
}
- (void)keepLeftAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepLeftAlignTo) value:KeepRequired(0)];
}
- (void)keepRightAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepRightAlignTo) value:KeepRequired(0)];
}
- (void)keepTopAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepTopAlignTo) value:KeepRequired(0)];
}
- (void)keepBottomAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepBottomAlignTo) value:KeepRequired(0)];
}
- (void)keepVerticallyAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepVerticalAlignTo) value:KeepRequired(0)];
}
- (void)keepHorizontallyAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepHorizontalAlignTo) value:KeepRequired(0)];
}
- (void)keepBaselineAligned {
[self keep_alignedSelector:_cmd invokeSelector:@selector(keepBaselineAlignTo) value:KeepRequired(0)];
}
@end