-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDoubleSideView.m
120 lines (82 loc) · 4.72 KB
/
DoubleSideView.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
//
// DoubleSideView.m
// StomtiOS
//
// Created by Leonardo Cascianelli on 01/03/16.
// Copyright © 2016 Leonardo Cascianelli. All rights reserved.
//
#import "DoubleSideView.h"
@interface DoubleSideView ()
@property (nonatomic,strong) NSLayoutConstraint* topLeadingConstraint;
@property (nonatomic,strong) NSLayoutConstraint* topTrailingConstraint;
@property (nonatomic,strong) NSLayoutConstraint* botLeadingConstraint;
@property (nonatomic,strong) NSLayoutConstraint* botTrailingConstraint;
@end
@implementation DoubleSideView
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
if(self = [super initWithCoder:aDecoder])
{
_topView = [[UIView alloc] init];
_botView = [[UIView alloc] init];
_topGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(shrinkSendingView:)];
[_topGestureRecognizer setNumberOfTapsRequired:1];
[_topGestureRecognizer setNumberOfTouchesRequired:1];
_botGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(shrinkSendingView:)];
[_botGestureRecognizer setNumberOfTapsRequired:1];
[_botGestureRecognizer setNumberOfTouchesRequired:1];
self.backgroundColor = [UIColor yellowColor];
_distance = 16;
[self addSubview:_topView];
[self addSubview:_botView];
}
return self;
}
- (void)drawRect:(CGRect)rect {
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[_topView]|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_topView)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[_botView]|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_botView)]];
_topLeadingConstraint = [NSLayoutConstraint constraintWithItem:_topView attribute:NSLayoutAttributeLeading relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeLeading multiplier:1.0 constant:0];
_topTrailingConstraint = [NSLayoutConstraint constraintWithItem:_topView attribute:NSLayoutAttributeTrailing relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeTrailing multiplier:1.0 constant:-_distance];
_botLeadingConstraint = [NSLayoutConstraint constraintWithItem:_botView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:_distance];
_botTrailingConstraint = [NSLayoutConstraint constraintWithItem:_botView attribute:NSLayoutAttributeTrailing relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeTrailing multiplier:1.0 constant:0];
[self addConstraints:@[_topTrailingConstraint,_topLeadingConstraint,_botLeadingConstraint,_botTrailingConstraint]];
}
- (void)shrinkSendingView:(UITapGestureRecognizer *)gestureRecognizer
{
if([gestureRecognizer.view isEqual:_topView])
{
[self removeConstraints:@[_topTrailingConstraint,_botLeadingConstraint]];
_topTrailingConstraint = [NSLayoutConstraint constraintWithItem:_topView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:_distance];
_botLeadingConstraint = [NSLayoutConstraint constraintWithItem:_botView attribute:NSLayoutAttributeLeading relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeLeading multiplier:1.0 constant:_distance];
[self addConstraints:@[_topTrailingConstraint,_botLeadingConstraint]];
}
else
{
[self removeConstraints:@[_topTrailingConstraint,_botLeadingConstraint]];
_topTrailingConstraint = [NSLayoutConstraint constraintWithItem:_topView attribute:NSLayoutAttributeTrailing relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeTrailing multiplier:1.0 constant:-_distance];
_botLeadingConstraint = [NSLayoutConstraint constraintWithItem:_botView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:_distance];
[self addConstraints:@[_topTrailingConstraint,_botLeadingConstraint]];
}
[UIView animateWithDuration:.3f delay:.0f usingSpringWithDamping:.7f initialSpringVelocity:.0f options:0 animations:^{
[self layoutIfNeeded];
} completion:nil];
}
- (void)setTopView:(UIView *)topView
{
if(_topView) [_topView removeFromSuperview];
_topView = topView;
_topView.translatesAutoresizingMaskIntoConstraints = NO;
_topView.userInteractionEnabled = YES;
[_topView addGestureRecognizer:_topGestureRecognizer];
[self addSubview:_topView];
}
- (void)setBotView:(UIView *)botView
{
if(_botView) [_botView removeFromSuperview];
_botView = botView;
_botView.userInteractionEnabled = YES;
_topView.translatesAutoresizingMaskIntoConstraints = NO;
[_botView addGestureRecognizer:_botGestureRecognizer];
[self addSubview:_botView];
}
@end