|
1
2
3
4
5
6
7
8
9
10
11
12
|
//
// DateRangePickerViewController.m
// DUREX Vendor Control
//
// Created by Imanol Barba on 9/13/14.
// Copyright (c) 2014 Emmoco. All rights reserved.
//
#import "DateRangePickerViewController.h"
@interface DateRangePickerViewController ()
|
|
13
|
@property uint8_t isExtended;
|
|
14
|
@property NSUInteger currentHeight;
|
|
15
|
@property NSUInteger currentWidth;
|
|
16
|
|
|
17
18
19
20
21
22
23
24
|
@end
@implementation DateRangePickerViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
|
|
25
|
|
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
}
return self;
}
- (void)viewDidLoad
{
self.view.backgroundColor=[[UIColor blackColor] colorWithAlphaComponent:.7];
self.dateRangePickerView.layer.cornerRadius = 5;
self.dateRangePickerView.layer.shadowOpacity = 0.8;
self.dateRangePickerView.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
//Fix transparency glitch on iPad
[self.fromDate setDate:[NSDate dateWithTimeIntervalSince1970:NSTimeIntervalSince1970]];
[self.fromDate setDate:[NSDate date]];
[self.toDate setDate:[NSDate dateWithTimeIntervalSince1970:NSTimeIntervalSince1970]];
[self.toDate setDate:[NSDate date]];
|
|
43
|
[self setIsExtended:0];
|
|
44
|
|
|
45
|
[self setCurrentHeight:[self scrollView].frame.size.height];
|
|
46
47
48
49
|
[self setCurrentWidth:[self scrollView].frame.size.width];
[self.scrollView setAutoresizesSubviews:YES];
[self.scrollView setAutoresizingMask: UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
|
|
50
|
|
|
51
52
53
54
|
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
|
|
55
56
57
58
59
|
- (void) viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
|
|
60
61
62
63
64
65
|
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
|
|
66
67
68
|
- (void) parentViewControllerDidRotateWithOrientation: (UIDeviceOrientation) orientation
{
NSLog(@"[DateRangePickerViewController.m]: Screen did rotate");
|
|
69
70
71
72
73
74
|
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.25];
[self expandScrollView];
self.scrollView.frame = CGRectMake(self.scrollView.frame.origin.x, self.scrollView.frame.origin.y, self.currentWidth,self.currentHeight);
[UIView commitAnimations];
[self.scrollView setContentSize:CGSizeMake([self scrolledView].frame.size.width,[self currentHeight])];
|
|
75
76
77
78
79
|
}
- (void) parentViewControllerWillRotateToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation duration: (NSTimeInterval)duration
{
NSLog(@"[DateRangePickerViewController.m]: Screen will rotate");
|
|
80
|
[self.scrollView setNeedsUpdateConstraints];
|
|
81
82
83
84
85
86
87
|
}
- (void) expandScrollView
{
}
|
|
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
- (void)showAnimate
{
self.view.transform = CGAffineTransformMakeScale(1.3, 1.3);
self.view.alpha = 0;
[UIView animateWithDuration:.25 animations:^{
self.view.alpha = 1;
self.view.transform = CGAffineTransformMakeScale(1, 1);
}];
}
- (void)removeAnimate
{
[UIView animateWithDuration:.25 animations:^{
self.view.transform = CGAffineTransformMakeScale(1.3, 1.3);
self.view.alpha = 0.0;
} completion:^(BOOL finished) {
if (finished) {
[self.view removeFromSuperview];
}
}];
}
|
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
- (void) moveUp: (UIView*) view : (NSUInteger) height
{
CGPoint position = view.center;
position.y -= height;
[UIView beginAnimations:@"MoveUp" context:NULL];
[UIView setAnimationDuration:0.5];
view.center = position;
[UIView commitAnimations];
}
- (void) moveDown: (UIView*) view : (NSUInteger) height
{
CGPoint position = view.center;
position.y += height;
[UIView beginAnimations:@"MoveDown" context:NULL];
[UIView setAnimationDuration:0.5];
view.center = position;
[UIView commitAnimations];
}
|
|
130
|
- (void) resizeViewHeight : (UIView*) view : (NSInteger) height : (Boolean) ignoreHeight
|
|
131
132
|
{
CGRect screenRect = [[UIScreen mainScreen] bounds];
|
|
133
134
|
CGFloat screenHeight = screenRect.size.height;
if((height > screenHeight) && !ignoreHeight)
|
|
135
|
{
|
|
136
|
NSLog(@"[DateRangePickerViewController.m]: Screen height limit reached");
|
|
137
|
}
|
|
138
|
else
|
|
139
|
{
|
|
140
141
142
143
|
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
view.frame = CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width,height);
[UIView commitAnimations];
|
|
144
|
}
|
|
145
|
if(height < 0)
|
|
146
|
{
|
|
147
|
[self setIsExtended: [self isExtended] - 1];
|
|
148
|
}
|
|
149
|
else
|
|
150
|
{
|
|
151
|
[self setIsExtended: [self isExtended] + 1];
|
|
152
|
}
|
|
153
|
[self.scrollView setContentSize:CGSizeMake([self scrolledView].frame.size.width,[self currentHeight])];
|
|
154
155
|
}
|
|
156
157
|
- (IBAction)toggleFromDate:(id)sender
{
|
|
158
|
NSUInteger height = [self fromDate].frame.size.height;
|
|
159
160
161
162
|
if([[self fromToggler] isOn])
{
[[self fromDate] setEnabled:TRUE];
[[self fromDate] setHidden:FALSE];
|
|
163
164
165
166
|
[self moveDown:[self toToggler] :height];
[self moveDown:[self toDate] :height];
[self moveDown:[self doneButton] :height];
[self moveDown:[self toLabel] :height];
|
|
167
|
[self setCurrentHeight:[self currentHeight] + height + 20];
|
|
168
|
[self resizeViewHeight : [self scrollView] : [self currentHeight] : FALSE];
|
|
169
170
171
172
173
|
}
else
{
[[self fromDate] setEnabled:FALSE];
[[self fromDate] setHidden:TRUE];
|
|
174
175
176
177
|
[self moveUp:[self toToggler] :height];
[self moveUp:[self toDate] :height];
[self moveUp:[self doneButton] :height];
[self moveUp:[self toLabel] :height];
|
|
178
|
[self setCurrentHeight:[self currentHeight] - height - 20];
|
|
179
|
[self resizeViewHeight : [self scrollView] : [self currentHeight] : FALSE];
|
|
180
181
182
183
|
}
}
- (IBAction)toggleToDate:(id)sender
{
|
|
184
|
NSUInteger height = [self toDate].frame.size.height;
|
|
185
186
187
188
|
if([[self toToggler] isOn])
{
[[self toDate] setEnabled:TRUE];
[[self toDate] setHidden:FALSE];
|
|
189
|
[self moveDown:[self doneButton] :height];
|
|
190
|
[self setCurrentHeight:[self currentHeight] + height + 20];
|
|
191
|
[self resizeViewHeight : [self scrollView] : [self currentHeight] : FALSE];
|
|
192
193
194
195
196
|
}
else
{
[[self toDate] setEnabled:FALSE];
[[self toDate] setHidden:TRUE];
|
|
197
|
[self moveUp:[self doneButton] :height];
|
|
198
|
[self setCurrentHeight:[self currentHeight] - height - 20];
|
|
199
|
[self resizeViewHeight : [self scrollView] : [self currentHeight] : FALSE];
|
|
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
}
}
- (IBAction)closePopup:(id)sender
{
NSDate *from = nil;
NSDate *to = nil;
if([[self fromToggler] isOn])
{
from = [[self fromDate] date];
}
if([[self toToggler] isOn])
{
to = [[self toDate] date];
}
[self.delegate passDateRangeViewController:self didFinishEnteringItem:from : to];
|
|
216
|
[self.childDelegate removeChildFromParentController:self];
|
|
217
218
219
220
221
222
|
[self removeAnimate];
}
- (void)showInView:(UIView *)aView animated:(BOOL)animated
{
[aView addSubview:self.view];
|
|
223
224
|
if (animated)
{
|
|
225
226
227
228
229
|
[self showAnimate];
}
}
@end
|