-
Notifications
You must be signed in to change notification settings - Fork 75
/
KeepView.m
1041 lines (744 loc) · 38.3 KB
/
KeepView.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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// KeepView.m
// Keep Layout
//
// Created by Martin Kiss on 21.10.12.
// Copyright (c) 2012 iMartin Kiss. All rights reserved.
//
#import "KeepView.h"
#import "KeepAttribute.h"
#import "KeepLayoutConstraint.h"
#import <objc/runtime.h>
@implementation KPView (KeepLayout)
#pragma mark Associations
- (KeepAttribute *)keep_selfAttributeForSelector:(SEL)selector creationBlock:(KeepAttribute *(^)(void))creationBlock {
KeepParameterAssert(selector);
KeepParameterAssert(creationBlock);
KeepAttribute *attribute = objc_getAssociatedObject(self, selector);
if ( ! attribute) {
attribute = creationBlock();
objc_setAssociatedObject(self, selector, attribute, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
return attribute;
}
- (KeepAttribute *)keep_superviewAttributeForSelector:(SEL)selector creationBlock:(KeepAttribute *(^)(void))creationBlock {
KeepParameterAssert(selector);
KeepParameterAssert(creationBlock);
KeepAttribute *attribute = objc_getAssociatedObject(self, selector);
if (attribute && ! [attribute isRelatedToView:self.superview]) {
[attribute deactivate];
attribute = nil;
}
if ( ! attribute) {
attribute = creationBlock();
objc_setAssociatedObject(self, selector, attribute, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
return attribute;
}
- (KeepAttribute *)keep_relatedAttributeForSelector:(SEL)selector toView:(KPView *)relatedView creationBlock:(KeepAttribute *(^)(void))creationBlock {
KeepParameterAssert(selector);
KeepParameterAssert(relatedView);
NSMapTable *attributesByRelatedView = objc_getAssociatedObject(self, selector);
if ( ! attributesByRelatedView) {
attributesByRelatedView = [NSMapTable weakToStrongObjectsMapTable];
objc_setAssociatedObject(self, selector, attributesByRelatedView, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
KeepAttribute *attribute = [attributesByRelatedView objectForKey:relatedView];
if ( ! attribute && creationBlock) {
attribute = creationBlock();
[attributesByRelatedView setObject:attribute forKey:relatedView];
}
return attribute;
}
- (void)keep_clearAttribute:(SEL)selector {
KeepParameterAssert(selector);
KeepAttribute *attribute = objc_getAssociatedObject(self, selector);
[attribute deactivate];
objc_setAssociatedObject(self, selector, nil, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
#pragma mark Utilites
- (void)keep_disableAutoresizingIfPossible {
// Error: Cannot choose layout method for UINavigationBar managed by a controller
if ([self isKindOfClass:UINavigationBar.class]) {
UINavigationBar *navigationBar = (UINavigationBar*)self;
if ([navigationBar.delegate isKindOfClass:UINavigationController.class]) {
return;
}
}
self.translatesAutoresizingMaskIntoConstraints = NO;
}
#pragma mark Dimensions
- (KeepAttribute *)keep_dimensionForSelector:(SEL)selector dimensionAttribute:(NSLayoutAttribute)dimensionAttribute name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert(dimensionAttribute == NSLayoutAttributeWidth
|| dimensionAttribute == NSLayoutAttributeHeight);
KeepParameterAssert(name);
return [self keep_selfAttributeForSelector:selector creationBlock:^KeepAttribute *{
KeepAttribute *attribute = [[[KeepConstantAttribute alloc] initWithView:self
layoutAttribute:dimensionAttribute
relatedView:nil
relatedLayoutAttribute:NSLayoutAttributeNotAnAttribute
coefficient:1]
name:@"%@ of <%@ %p>", name, self.class, self];
[self keep_disableAutoresizingIfPossible];
return attribute;
}];
}
- (KeepAttribute *)keep_dimensionForSelector:(SEL)selector dimensionAttribute:(NSLayoutAttribute)dimensionAttribute relatedView:(KPView *)relatedView name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert(dimensionAttribute == NSLayoutAttributeWidth
|| dimensionAttribute == NSLayoutAttributeHeight);
KeepParameterAssert(relatedView);
KeepParameterAssert(name);
return [self keep_relatedAttributeForSelector:selector toView:relatedView creationBlock:^KeepAttribute *{
KeepAttribute *attribute = [[KeepMultiplierAttribute alloc] initWithView:self
layoutAttribute:dimensionAttribute
relatedView:relatedView
relatedLayoutAttribute:dimensionAttribute
coefficient:1];
[attribute name:@"%@ of <%@ %p> to <%@ %p>", name, self.class, self, relatedView.class, relatedView];
[self keep_disableAutoresizingIfPossible];
[relatedView keep_disableAutoresizingIfPossible];
// Establish inverse relation
[relatedView keep_relatedAttributeForSelector:_cmd toView:self creationBlock:^KeepAttribute *{
return attribute;
}];
return attribute;
}];
}
- (KeepAttribute *)keepWidth {
return [self keep_dimensionForSelector:_cmd dimensionAttribute:NSLayoutAttributeWidth name:@"width"];
}
- (KeepAttribute *)keepHeight {
return [self keep_dimensionForSelector:_cmd dimensionAttribute:NSLayoutAttributeHeight name:@"height"];
}
- (KeepAttribute *)keepSize {
return [[KeepAttribute group:
self.keepWidth,
self.keepHeight,
nil] name:@"size of <%@ %p>", self.class, self];
}
- (void)keepSize:(CGSize)size {
[self keepSize:size priority:KeepPriorityRequired];
}
- (void)keepSize:(CGSize)size priority:(KeepPriority)priority {
self.keepWidth.equal = KeepValueMake(size.width, priority);
self.keepHeight.equal = KeepValueMake(size.height, priority);
}
- (KeepAttribute *)keepAspectRatio {
return [self keep_selfAttributeForSelector:_cmd creationBlock:^KeepAttribute *{
KeepAttribute *attribute = [[KeepMultiplierAttribute alloc] initWithView:self
layoutAttribute:NSLayoutAttributeWidth
relatedView:self
relatedLayoutAttribute:NSLayoutAttributeHeight
coefficient:1];
[attribute name:@"aspect ratio of <%@ %p>", self.class, self];
[self keep_disableAutoresizingIfPossible];
return attribute;
}];
}
- (KeepRelatedAttributeBlock)keepWidthTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_dimensionForSelector:_cmd dimensionAttribute:NSLayoutAttributeWidth relatedView:view name:@"width"];
};
}
- (KeepRelatedAttributeBlock)keepHeightTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_dimensionForSelector:_cmd dimensionAttribute:NSLayoutAttributeHeight relatedView:view name:@"height"];
};
}
- (KeepRelatedAttributeBlock)keepSizeTo {
return ^KeepAttribute *(KPView *view) {
return [[KeepAttribute group:
self.keepWidthTo(view),
self.keepHeightTo(view),
nil] name:@"size of <%@ %p> to <%@ %p>", self.class, self, view.class, view];
};
}
#pragma mark Supreview Insets
- (KeepAttribute *)keep_insetForSelector:(SEL)selector useSafe:(BOOL)useSafeInsets edgeAttribute:(NSLayoutAttribute)edgeAttribute coefficient:(CGFloat)coefficient name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert( edgeAttribute == NSLayoutAttributeLeft
|| edgeAttribute == NSLayoutAttributeRight
|| edgeAttribute == NSLayoutAttributeTop
|| edgeAttribute == NSLayoutAttributeBottom
|| edgeAttribute == NSLayoutAttributeLeading
|| edgeAttribute == NSLayoutAttributeTrailing
|| edgeAttribute == NSLayoutAttributeLeftMargin
|| edgeAttribute == NSLayoutAttributeRightMargin
|| edgeAttribute == NSLayoutAttributeTopMargin
|| edgeAttribute == NSLayoutAttributeBottomMargin
|| edgeAttribute == NSLayoutAttributeLeadingMargin
|| edgeAttribute == NSLayoutAttributeTrailingMargin
|| edgeAttribute == NSLayoutAttributeFirstBaseline
|| edgeAttribute == NSLayoutAttributeLastBaseline
);
KeepParameterAssert(name);
KeepAssert(self.superview, @"Calling %@ allowed only when superview exists", NSStringFromSelector(selector));
return [self keep_superviewAttributeForSelector:selector creationBlock:^KeepAttribute *{
NSDictionary<NSNumber *, NSNumber *> *nonMarginAttributes = @{
@(NSLayoutAttributeLeftMargin): @(NSLayoutAttributeLeft),
@(NSLayoutAttributeRightMargin): @(NSLayoutAttributeRight),
@(NSLayoutAttributeTopMargin): @(NSLayoutAttributeTop),
@(NSLayoutAttributeBottomMargin): @(NSLayoutAttributeBottom),
@(NSLayoutAttributeLeadingMargin): @(NSLayoutAttributeLeading),
@(NSLayoutAttributeTrailingMargin): @(NSLayoutAttributeTrailing),
};
NSDictionary<NSNumber *, NSNumber *> *nonBaselineAttributes = @{
@(NSLayoutAttributeFirstBaseline): @(NSLayoutAttributeTop),
@(NSLayoutAttributeLastBaseline): @(NSLayoutAttributeBottom),
};
NSLayoutAttribute superviewEdgeAttribute = [[nonBaselineAttributes objectForKey:@(edgeAttribute)] integerValue] ?: edgeAttribute;
NSLayoutAttribute selfEdgeAttribute = [[nonMarginAttributes objectForKey:@(edgeAttribute)] integerValue] ?: edgeAttribute;
id<KeepViewOrGuide> related = self.superview;
if (useSafeInsets) {
related = self.superview.safeAreaLayoutGuide;
}
KeepAttribute *attribute = [[[KeepConstantAttribute alloc] initWithView:self
layoutAttribute:selfEdgeAttribute
relatedView:related
relatedLayoutAttribute:superviewEdgeAttribute
coefficient:coefficient]
name:@"%@ of <%@ %p> to superview <%@ %p>", name, self.class, self, self.superview.class, self.superview];
[self keep_disableAutoresizingIfPossible];
return attribute;
}];
}
- (KeepAttribute *)keepLeftInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeLeft coefficient:1 name:@"left inset"];
}
- (KeepAttribute *)keepRightInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeRight coefficient:-1 name:@"right inset"];
}
- (KeepAttribute *)keepLeadingInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeLeading coefficient:1 name:@"leading inset"];
}
- (KeepAttribute *)keepTrailingInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeTrailing coefficient:-1 name:@"trailing inset"];
}
- (KeepAttribute *)keepTopInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeTop coefficient:1 name:@"top inset"];
}
- (KeepAttribute *)keepBottomInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeBottom coefficient:-1 name:@"bottom inset"];
}
- (KeepAttribute *)keepFirstBaselineInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeFirstBaseline coefficient:1 name:@"first baseline inset"];
}
- (KeepAttribute *)keepLastBaselineInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeLastBaseline coefficient:-1 name:@"last baseline inset"];
}
- (KeepAttribute *)keepInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopInset,
self.keepBottomInset,
self.keepLeftInset,
self.keepRightInset ]]
name:@"all insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepHorizontalInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepLeftInset,
self.keepRightInset ]]
name:@"horizontal insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepVerticalInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopInset,
self.keepBottomInset ]]
name:@"vertical insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (void)keepInsets:(KPEdgeInsets)insets {
[self keepInsets:insets priority:KeepPriorityRequired];
}
- (void)keepInsets:(KPEdgeInsets)insets priority:(KeepPriority)priority {
self.keepLeftInset.equal = KeepValueMake(insets.left, priority);
self.keepRightInset.equal = KeepValueMake(insets.right, priority);
self.keepTopInset.equal = KeepValueMake(insets.top, priority);
self.keepBottomInset.equal = KeepValueMake(insets.bottom, priority);
}
#pragma mark Superview Safe Insets
- (KeepAttribute *)keepLeftSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeLeft coefficient:1 name:@"left safe inset"];
}
- (KeepAttribute *)keepRightSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeRight coefficient:-1 name:@"right safe inset"];
}
- (KeepAttribute *)keepLeadingSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeLeading coefficient:1 name:@"leading safe inset"];
}
- (KeepAttribute *)keepTrailingSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeTrailing coefficient:-1 name:@"trailing safe inset"];
}
- (KeepAttribute *)keepTopSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeTop coefficient:1 name:@"top safe inset"];
}
- (KeepAttribute *)keepBottomSafeInset {
return [self keep_insetForSelector:_cmd useSafe:YES edgeAttribute:NSLayoutAttributeBottom coefficient:-1 name:@"bottom safe inset"];
}
- (KeepAttribute *)keepSafeInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopSafeInset,
self.keepBottomSafeInset,
self.keepLeftSafeInset,
self.keepRightSafeInset ]]
name:@"all safe insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepHorizontalSafeInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepLeftSafeInset,
self.keepRightSafeInset ]]
name:@"horizontal safe insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepVerticalSafeInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopSafeInset,
self.keepBottomSafeInset ]]
name:@"vertical safe insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (void)keepSafeInsets:(KPEdgeInsets)insets {
[self keepSafeInsets:insets priority:KeepPriorityRequired];
}
- (void)keepSafeInsets:(KPEdgeInsets)insets priority:(KeepPriority)priority {
self.keepLeftSafeInset.equal = KeepValueMake(insets.left, priority);
self.keepRightSafeInset.equal = KeepValueMake(insets.right, priority);
self.keepTopSafeInset.equal = KeepValueMake(insets.top, priority);
self.keepBottomSafeInset.equal = KeepValueMake(insets.bottom, priority);
}
#pragma mark Superview Margin Insets
- (KeepAttribute *)keepLeftMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeLeftMargin coefficient:1 name:@"left margin inset"];
}
- (KeepAttribute *)keepRightMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeRightMargin coefficient:-1 name:@"right margin inset"];
}
- (KeepAttribute *)keepLeadingMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeLeadingMargin coefficient:1 name:@"leading margin inset"];
}
- (KeepAttribute *)keepTrailingMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeTrailingMargin coefficient:-1 name:@"trailing margin inset"];
}
- (KeepAttribute *)keepTopMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeTopMargin coefficient:1 name:@"top margin inset"];
}
- (KeepAttribute *)keepBottomMarginInset {
return [self keep_insetForSelector:_cmd useSafe:NO edgeAttribute:NSLayoutAttributeBottomMargin coefficient:-1 name:@"bottom margin inset"];
}
- (KeepAttribute *)keepMarginInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopMarginInset,
self.keepBottomMarginInset,
self.keepLeftMarginInset,
self.keepRightMarginInset ]]
name:@"all margin insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepHorizontalMarginInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepLeftMarginInset,
self.keepRightMarginInset ]]
name:@"horizontal margin insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (KeepAttribute *)keepVerticalMarginInsets {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepTopMarginInset,
self.keepBottomMarginInset ]]
name:@"vertical margin insets of <%@ %p> to superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (void)keepMarginInsets:(KPEdgeInsets)insets {
[self keepMarginInsets:insets priority:KeepPriorityRequired];
}
- (void)keepMarginInsets:(KPEdgeInsets)insets priority:(KeepPriority)priority {
self.keepLeftMarginInset.equal = KeepValueMake(insets.left, priority);
self.keepRightMarginInset.equal = KeepValueMake(insets.right, priority);
self.keepTopMarginInset.equal = KeepValueMake(insets.top, priority);
self.keepBottomMarginInset.equal = KeepValueMake(insets.bottom, priority);
}
#pragma mark Center
- (KeepAttribute *)keep_centerForSelector:(SEL)selector centerAttribute:(NSLayoutAttribute)centerAttribute name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert(centerAttribute == NSLayoutAttributeCenterX
|| centerAttribute == NSLayoutAttributeCenterY);
KeepParameterAssert(name);
KeepAssert(self.superview, @"Calling %@ allowed only when superview exists", NSStringFromSelector(selector));
return [self keep_superviewAttributeForSelector:selector creationBlock:^KeepAttribute *{
KeepAttribute *attribute = [[[KeepMultiplierAttribute alloc] initWithView:self
layoutAttribute:centerAttribute
relatedView:self.superview
relatedLayoutAttribute:centerAttribute
coefficient:2]
name:@"%@ of <%@ %p> in superview <%@ %p>", name, self.class, self, self.superview.class, self.superview];
[self keep_disableAutoresizingIfPossible];
return attribute;
}];
}
- (KeepAttribute *)keepHorizontalCenter {
return [self keep_centerForSelector:_cmd centerAttribute:NSLayoutAttributeCenterX name:@"horizontal center"];
}
- (KeepAttribute *)keepVerticalCenter {
return [self keep_centerForSelector:_cmd centerAttribute:NSLayoutAttributeCenterY name:@"vertical center"];
}
- (KeepAttribute *)keepCenter {
return [[[KeepGroupAttribute alloc] initWithAttributes:@[
self.keepHorizontalCenter,
self.keepVerticalCenter ]]
name:@"center of <%@ %p> in superview <%@ %p>", self.class, self, self.superview.class, self.superview];
}
- (void)keepCentered {
[self keepCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepCenteredWithPriority:(KeepPriority)priority {
[self keepCenter:CGPointMake(0.5, 0.5) priority:priority];
}
- (void)keepHorizontallyCentered {
[self keepHorizontallyCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepHorizontallyCenteredWithPriority:(KeepPriority)priority {
self.keepHorizontalCenter.equal = KeepValueMake(0.5, priority);
}
- (void)keepVerticallyCentered {
[self keepVerticallyCenteredWithPriority:KeepPriorityRequired];
}
- (void)keepVerticallyCenteredWithPriority:(KeepPriority)priority {
self.keepVerticalCenter.equal = KeepValueMake(0.5, priority);
}
- (void)keepCenter:(CGPoint)center {
[self keepCenter:center priority:KeepPriorityRequired];
}
- (void)keepCenter:(CGPoint)center priority:(KeepPriority)priority {
self.keepHorizontalCenter.equal = KeepValueMake(center.x, priority);
self.keepVerticalCenter.equal = KeepValueMake(center.y, priority);
}
#pragma mark Offsets
- (KeepAttribute *)keep_offsetForSelector:(SEL)selector edgeAttribute:(NSLayoutAttribute)edgeAttribute relatedView:(KPView *)relatedView name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert( edgeAttribute == NSLayoutAttributeLeft
|| edgeAttribute == NSLayoutAttributeRight
|| edgeAttribute == NSLayoutAttributeTop
|| edgeAttribute == NSLayoutAttributeBottom
|| edgeAttribute == NSLayoutAttributeLeading
|| edgeAttribute == NSLayoutAttributeTrailing
|| edgeAttribute == NSLayoutAttributeFirstBaseline
|| edgeAttribute == NSLayoutAttributeLastBaseline);
KeepParameterAssert(relatedView);
KeepParameterAssert(name);
return [self keep_relatedAttributeForSelector:selector toView:relatedView creationBlock:^KeepAttribute *{
NSDictionary<NSNumber *, NSNumber *> *oppositeEdges = @{
@(NSLayoutAttributeLeft): @(NSLayoutAttributeRight),
@(NSLayoutAttributeRight): @(NSLayoutAttributeLeft),
@(NSLayoutAttributeTop): @(NSLayoutAttributeBottom),
@(NSLayoutAttributeBottom): @(NSLayoutAttributeTop),
@(NSLayoutAttributeLeading): @(NSLayoutAttributeTrailing),
@(NSLayoutAttributeTrailing): @(NSLayoutAttributeLeading),
@(NSLayoutAttributeFirstBaseline): @(NSLayoutAttributeLastBaseline),
@(NSLayoutAttributeLastBaseline): @(NSLayoutAttributeFirstBaseline),
};
KeepAttribute *attribute = [[[KeepConstantAttribute alloc] initWithView:self
layoutAttribute:edgeAttribute
relatedView:relatedView
relatedLayoutAttribute:[[oppositeEdges objectForKey:@(edgeAttribute)] integerValue]
coefficient:1]
name:@"%@ of <%@ %p> to <%@ %p>", name, self.class, self, relatedView.class, relatedView];
[self keep_disableAutoresizingIfPossible];
[relatedView keep_disableAutoresizingIfPossible];
return attribute;
}];
}
- (KeepRelatedAttributeBlock)keepLeftOffsetTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_offsetForSelector:_cmd edgeAttribute:NSLayoutAttributeLeft relatedView:view name:@"left offset"];
};
}
- (KeepRelatedAttributeBlock)keepRightOffsetTo {
return ^KeepAttribute *(KPView *view) {
return view.keepLeftOffsetTo(self);
};
}
- (KeepRelatedAttributeBlock)keepLeadingOffsetTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_offsetForSelector:_cmd edgeAttribute:NSLayoutAttributeLeading relatedView:view name:@"leading offset"];
};
}
- (KeepRelatedAttributeBlock)keepTrailingOffsetTo {
return ^KeepAttribute *(KPView *view) {
return view.keepLeadingOffsetTo(self);
};
}
- (KeepRelatedAttributeBlock)keepTopOffsetTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_offsetForSelector:_cmd edgeAttribute:NSLayoutAttributeTop relatedView:view name:@"top offset"];
};
}
- (KeepRelatedAttributeBlock)keepBottomOffsetTo {
return ^KeepAttribute *(KPView *view) {
return view.keepTopOffsetTo(self);
};
}
- (KeepRelatedAttributeBlock)keepFirstBaselineOffsetTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_offsetForSelector:_cmd edgeAttribute:NSLayoutAttributeFirstBaseline relatedView:view name:@"first baseline offset"];
};
}
- (KeepRelatedAttributeBlock)keepLastBaselineOffsetTo {
return ^KeepAttribute *(KPView *view) {
return view.keepFirstBaselineOffsetTo(self);
};
}
#pragma mark Alignments
- (KeepAttribute *)keep_alignForSelector:(SEL)selector alignAttribute:(NSLayoutAttribute)alignAttribute relatedView:(KPView *)relatedView coefficient:(CGFloat)coefficient name:(NSString *)name {
KeepParameterAssert(selector);
KeepParameterAssert(alignAttribute == NSLayoutAttributeLeft
|| alignAttribute == NSLayoutAttributeRight
|| alignAttribute == NSLayoutAttributeTop
|| alignAttribute == NSLayoutAttributeBottom
|| alignAttribute == NSLayoutAttributeLeading
|| alignAttribute == NSLayoutAttributeTrailing
|| alignAttribute == NSLayoutAttributeCenterX
|| alignAttribute == NSLayoutAttributeBaseline
|| alignAttribute == NSLayoutAttributeFirstBaseline
|| alignAttribute == NSLayoutAttributeLastBaseline
|| alignAttribute == NSLayoutAttributeCenterY);
KeepParameterAssert(relatedView);
KeepParameterAssert(name);
return [self keep_relatedAttributeForSelector:selector toView:relatedView creationBlock:^KeepAttribute *{
KeepAttribute *attribute = [[[KeepConstantAttribute alloc] initWithView:self
layoutAttribute:alignAttribute
relatedView:relatedView
relatedLayoutAttribute:alignAttribute
coefficient:coefficient]
name:@"%@ of <%@ %p> to <%@ %p>", name, self.class, self, relatedView.class, relatedView];
[self keep_disableAutoresizingIfPossible];
[relatedView keep_disableAutoresizingIfPossible];
// Establish inverse attribute
[relatedView keep_relatedAttributeForSelector:selector toView:self creationBlock:^KeepAttribute *{
return attribute;
}];
return attribute;
}];
}
- (KeepRelatedAttributeBlock)keepLeftAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeLeft relatedView:view coefficient:1 name:@"left alignment"];
};
}
- (KeepRelatedAttributeBlock)keepRightAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeRight relatedView:view coefficient:-1 name:@"right alignment"];
};
}
- (KeepRelatedAttributeBlock)keepLeadingAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeLeading relatedView:view coefficient:1 name:@"leading alignment"];
};
}
- (KeepRelatedAttributeBlock)keepTrailingAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeTrailing relatedView:view coefficient:-1 name:@"trailing alignment"];
};
}
- (KeepRelatedAttributeBlock)keepTopAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeTop relatedView:view coefficient:1 name:@"top alignment"];
};
}
- (KeepRelatedAttributeBlock)keepBottomAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeBottom relatedView:view coefficient:-1 name:@"bottom alignment"];
};
}
- (KeepRelatedAttributeBlock)keepEdgeAlignTo {
return ^KeepAttribute *(KPView *view) {
return [KeepAttribute group:
self.keepTopAlignTo(view),
self.keepLeftAlignTo(view),
self.keepRightAlignTo(view),
self.keepBottomAlignTo(view),
nil];
};
}
- (KeepRelatedAttributeBlock)keepCenterAlignTo {
return ^KeepAttribute *(KPView *view) {
return [KeepAttribute group:
self.keepVerticalAlignTo(view),
self.keepHorizontalAlignTo(view),
nil];
};
}
- (KeepRelatedAttributeBlock)keepVerticalAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeCenterX relatedView:view coefficient:1 name:@"vertical center alignment"];
};
}
- (KeepRelatedAttributeBlock)keepHorizontalAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeCenterY relatedView:view coefficient:1 name:@"horizontal center alignment"];
};
}
- (KeepRelatedAttributeBlock)keepFirstBaselineAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeFirstBaseline relatedView:view coefficient:-1 name:@"first baseline alignment"];
};
}
- (KeepRelatedAttributeBlock)keepLastBaselineAlignTo {
return ^KeepAttribute *(KPView *view) {
return [self keep_alignForSelector:_cmd alignAttribute:NSLayoutAttributeLastBaseline relatedView:view coefficient:-1 name:@"last baseline alignment"];
};
}
#pragma mark Compression & Hugging Convenience
- (KeepPriority)keepCompressionResistance {
return MIN(self.keepHorizontalCompressionResistance, self.keepVerticalCompressionResistance);
}
- (void)setKeepCompressionResistance:(KeepPriority)priority {
self.keepHorizontalCompressionResistance = priority;
self.keepVerticalCompressionResistance = priority;
}
- (KeepPriority)keepHorizontalCompressionResistance {
#if TARGET_OS_IOS
return [self contentCompressionResistancePriorityForAxis:UILayoutConstraintAxisHorizontal];
#else
return [self contentCompressionResistancePriorityForOrientation:NSLayoutConstraintOrientationHorizontal];
#endif
}
- (void)setKeepHorizontalCompressionResistance:(KeepPriority)priority {
#if TARGET_OS_IOS
[self setContentCompressionResistancePriority:priority forAxis:UILayoutConstraintAxisHorizontal];
#else
[self setContentCompressionResistancePriority:priority forOrientation:NSLayoutConstraintOrientationHorizontal];
#endif
}
- (KeepPriority)keepVerticalCompressionResistance {
#if TARGET_OS_IOS
return [self contentCompressionResistancePriorityForAxis:UILayoutConstraintAxisVertical];
#else
return [self contentCompressionResistancePriorityForOrientation:NSLayoutConstraintOrientationVertical];
#endif
}
- (void)setKeepVerticalCompressionResistance:(KeepPriority)priority {
#if TARGET_OS_IOS
[self setContentCompressionResistancePriority:priority forAxis:UILayoutConstraintAxisVertical];
#else
[self setContentCompressionResistancePriority:priority forOrientation:NSLayoutConstraintOrientationVertical];
#endif
}
- (KeepPriority)keepHuggingPriority {
return MIN(self.keepHorizontalHuggingPriority, self.keepVerticalHuggingPriority);
}
- (void)setKeepHuggingPriority:(KeepPriority)priority {
self.keepHorizontalHuggingPriority = priority;
self.keepVerticalHuggingPriority = priority;
}
- (KeepPriority)keepHorizontalHuggingPriority {
#if TARGET_OS_IOS
return [self contentHuggingPriorityForAxis:UILayoutConstraintAxisHorizontal];
#else
return [self contentHuggingPriorityForOrientation:NSLayoutConstraintOrientationHorizontal];
#endif
}
- (void)setKeepHorizontalHuggingPriority:(KeepPriority)priority {
#if TARGET_OS_IOS
[self setContentHuggingPriority:priority forAxis:UILayoutConstraintAxisHorizontal];
#else
[self setContentHuggingPriority:priority forOrientation:NSLayoutConstraintOrientationHorizontal];
#endif
}
- (KeepPriority)keepVerticalHuggingPriority {
#if TARGET_OS_IOS
return [self contentHuggingPriorityForAxis:UILayoutConstraintAxisVertical];
#else
return [self contentHuggingPriorityForOrientation:NSLayoutConstraintOrientationVertical];
#endif
}
- (void)setKeepVerticalHuggingPriority:(KeepPriority)priority {
#if TARGET_OS_IOS
[self setContentHuggingPriority:priority forAxis:UILayoutConstraintAxisVertical];
#else
[self setContentHuggingPriority:priority forOrientation:NSLayoutConstraintOrientationVertical];
#endif
}
#pragma mark Animating Constraints
#if TARGET_OS_IOS
- (void)keepAnimatedWithDuration:(NSTimeInterval)duration layout:(void(^)(void))animations {
KeepParameterAssert(duration >= 0);
KeepParameterAssert(animations);
[self keep_animationPerformWithDuration:duration delay:0 block:^{
[UIView animateWithDuration:duration
animations:^{
animations();
[self layoutIfNeeded];
}];
}];
}
- (void)keepAnimatedWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay layout:(void(^)(void))animations {
KeepParameterAssert(duration >= 0);
KeepParameterAssert(delay >= 0);
KeepParameterAssert(animations);
[self keep_animationPerformWithDuration:duration delay:delay block:^{
[UIView animateWithDuration:duration
animations:^{
animations();
[self layoutIfNeeded];
}];
}];
}
- (void)keepAnimatedWithDuration:(NSTimeInterval)duration layout:(void (^)(void))animations completion:(void (^)(BOOL))completion {
KeepParameterAssert(duration >= 0);
KeepParameterAssert(animations);
[self keep_animationPerformWithDuration:duration delay:0 block:^{
[UIView animateWithDuration:duration
animations:^{
animations();
[self layoutIfNeeded];
}
completion:completion];
}];
}
- (void)keepAnimatedWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options layout:(void(^)(void))animations completion:(void(^)(BOOL finished))completion {
KeepParameterAssert(duration >= 0);
KeepParameterAssert(delay >= 0);
KeepParameterAssert(animations);
[self keep_animationPerformWithDuration:duration delay:delay block:^{
[UIView animateWithDuration:duration
delay:0
options:options
animations:^{
animations();
[self layoutIfNeeded];
}
completion:completion];
}];
}
- (void)keepAnimatedWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay usingSpringWithDamping:(CGFloat)dampingRatio initialSpringVelocity:(CGFloat)velocity options:(UIViewAnimationOptions)options layout:(void (^)(void))animations completion:(void (^)(BOOL finished))completion {
KeepParameterAssert(duration >= 0);
KeepParameterAssert(delay >= 0);
KeepParameterAssert(animations);
[self keep_animationPerformWithDuration:duration delay:delay block:^{