forked from CodeForPhilly/CyclePhilly-iOS-app
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCustomPickerDataSource.m
More file actions
334 lines (277 loc) · 13.1 KB
/
CustomPickerDataSource.m
File metadata and controls
334 lines (277 loc) · 13.1 KB
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
/** Cycle Philly, 2013 Code For Philly
* Philadelphia, PA. USA
*
*
* Contact: Corey Acri <acri.corey@gmail.com>
* Lloyd Emelle <lemelle@codeforamerica.org>
*
* Updated/Modified for Philadelphia's app deployment. Based on the
* Cycle Atlanta and CycleTracks codebase for SFCTA.
*
* Cycle Atlanta, Copyright 2012, 2013 Georgia Institute of Technology
* Atlanta, GA. USA
*
* @author Christopher Le Dantec <ledantec@gatech.edu>
* @author Anhong Guo <guoanhong@gatech.edu>
*
* Updated/Modified for Atlanta's app deployment. Based on the
* CycleTracks codebase for SFCTA.
*
** CycleTracks, Copyright 2009,2010 San Francisco County Transportation Authority
* San Francisco, CA, USA
*
* @author Matt Paul <mattpaul@mopimp.com>
*
* This file is part of CycleTracks.
*
* CycleTracks is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CycleTracks is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CycleTracks. If not, see <http://www.gnu.org/licenses/>.
*/
//
// CustomPickerDataSource.m
// CycleTracks
//
// Copyright 2009-2010 SFCTA. All rights reserved.
// Written by Matt Paul <mattpaul@mopimp.com> on 9/22/09.
// For more information on the project,
// e-mail Billy Charlton at the SFCTA <billy.charlton@sfcta.org>
#import "CustomPickerDataSource.h"
#import "CustomView.h"
#import "TripPurposeDelegate.h"
@implementation CustomPickerDataSource
@synthesize customPickerArray, pickerTitles, pickerImages, parent;
- (id)init {
// use predetermined frame size
self = [super init];
if (!self) return self;
pickerCategory = [[NSUserDefaults standardUserDefaults] integerForKey:@"pickerCategory"];
if (IOS_6_OR_EARLIER) {
// setup for picker on ios 5/6
// create the data source for this custom picker
NSMutableArray *viewArray = [[NSMutableArray alloc] init];
CustomView *view;
if (pickerCategory == 0) {
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Commute";
view.image = [UIImage imageNamed:kTripPurposeCommuteIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"School";
view.image = [UIImage imageNamed:kTripPurposeSchoolIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Work-Related";
view.image = [UIImage imageNamed:kTripPurposeWorkIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Exercise";
view.image = [UIImage imageNamed:kTripPurposeExerciseIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Social";
view.image = [UIImage imageNamed:kTripPurposeSocialIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Shopping";
view.image = [UIImage imageNamed:kTripPurposeShoppingIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Errand";
view.image = [UIImage imageNamed:kTripPurposeErrandIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Other";
view.image = [UIImage imageNamed:kTripPurposeOtherIcon];
[viewArray addObject:view];
<<<<<<< HEAD
[view release];
=======
} else if (pickerCategory == 1){
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Pavement issue";
//view.image = [UIImage imageNamed:kIssuePavementIssueIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Traffic signal";
//view.image = [UIImage imageNamed:kIssueTrafficSignalIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Enforcement";
//view.image = [UIImage imageNamed:kIssueEnforcementIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike parking";
//view.image = [UIImage imageNamed:kIssueNeedParkingIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike lane issue";
//view.image = [UIImage imageNamed:kIssueBikeLaneIssueIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Note this spot";
//view.image = [UIImage imageNamed:kIssueNoteThisSpotIcon];
[viewArray addObject:view];
} else if (pickerCategory == 2){
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike parking";
//view.image = [UIImage imageNamed:kAssetBikeParkingIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike shops";
//view.image = [UIImage imageNamed:kAssetBikeShopsIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Public restrooms";
//view.image = [UIImage imageNamed:kAssetPublicRestroomsIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Secret passage";
//view.image = [UIImage imageNamed:kAssetSecretPassageIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Water fountains";
//view.image = [UIImage imageNamed:kAssetWaterFountainsIcon];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Note this spot";
//view.image = [UIImage imageNamed:kAssetNoteThisSpotIcon];
[viewArray addObject:view];
} else if (pickerCategory == 3){
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Note this asset";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Water fountains";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Secret passage";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Public restrooms";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike shops";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike parking";
view.image = [UIImage imageNamed:kNoteThisAsset];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @" ";
view.image = [UIImage imageNamed:kNoteBlank];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Pavement issue";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Traffic signal";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Enforcement";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike parking";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Bike lane issue";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
view = [[CustomView alloc] initWithFrame:CGRectZero];
view.title = @"Note this issue";
view.image = [UIImage imageNamed:kNoteThisIssue];
[viewArray addObject:view];
>>>>>>> master
}
self.customPickerArray = viewArray;
} else {
// ios7 or later
if (pickerCategory == 0) {
self.pickerTitles = [NSArray arrayWithObjects:@"Commute", @"School", @"Work-Related", @"Exercise", @"Social", @"Shopping", @"Errand", @"Other", nil];
self.pickerImages = [NSArray arrayWithObjects: [UIImage imageNamed:kTripPurposeCommuteIcon], [UIImage imageNamed:kTripPurposeSchoolIcon],
[UIImage imageNamed:kTripPurposeWorkIcon], [UIImage imageNamed:kTripPurposeExerciseIcon], [UIImage imageNamed:kTripPurposeSocialIcon],
[UIImage imageNamed:kTripPurposeShoppingIcon], [UIImage imageNamed:kTripPurposeErrandIcon], [UIImage imageNamed:kTripPurposeOtherIcon], nil];
}
}
return self;
}
#pragma mark UIPickerViewDataSource
/////////
// method definitions for iOS 5/6
- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component
{
return [CustomView viewWidth];
}
- (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component
{
return [CustomView viewHeight];
}
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
if (IOS_6_OR_EARLIER) {
// iOS 5/6
return [customPickerArray count];
} else {
// iOS 7+
return [pickerTitles count];
}
}
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
return 1;
}
#pragma mark UIPickerViewDelegate
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{
if (IOS_6_OR_EARLIER) {
// tell the picker which view to use for a given component and row;
// we have an array of views to show (iOS 5/6)
return [customPickerArray objectAtIndex:row];
}
// iOS 7+
if(view == nil) {
view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, pickerView.frame.size.width, 48)];
}
else {
NSArray *viewsToRemove = [view subviews];
for (UIView *v in viewsToRemove) {
[v removeFromSuperview];
}
}
if([pickerImages count] > 0) {
UIImage *image = [pickerImages objectAtIndex:row];
UIImageView *imageView = [[UIImageView alloc] initWithImage: image];
[imageView setContentMode:UIViewContentModeScaleAspectFit];
[imageView setFrame:CGRectMake(60, 0, 44, 44)];
[view addSubview:imageView];
}
CGRect labelFrame = CGRectMake(108, 0, pickerView.frame.size.width, 48);
UILabel *label = [[UILabel alloc] initWithFrame:labelFrame];
label.textColor = [UIColor whiteColor];
label.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:18];
label.text = [NSString stringWithFormat:@" %@", [pickerTitles objectAtIndex: row]];
[view addSubview:label];
return view;
}
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
[parent pickerView:pickerView didSelectRow:row inComponent:component];
}
@end