This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
forked from CodeForPhilly/CyclePhilly-iOS-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CustomPickerDataSource.h
78 lines (72 loc) · 3.48 KB
/
CustomPickerDataSource.h
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
/** Cycle Philly, 2013 Code For Philly
* Philadelphia, PA. USA
*
*
* Contact: Corey Acri <[email protected]>
* Lloyd Emelle <[email protected]>
*
* 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 <[email protected]>
* @author Anhong Guo <[email protected]>
*
* 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 <[email protected]>
*
* 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.h
// CycleTracks
//
// Copyright 2009-2010 SFCTA. All rights reserved.
// Written by Matt Paul <[email protected]> on 9/22/09.
// For more information on the project,
// e-mail Billy Charlton at the SFCTA <[email protected]>
// Check system version to support picker
// picker styles for iOS >= 7.1,
// 7.0, which gets its own weird style,
// and 5/6
#define IOS_6_OR_EARLIER ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0)
// Trip Purpose descriptions
#define kDescCommute @"The primary reason for this bike trip is to get between home and your primary work location."
#define kDescSchool @"The primary reason for this bike trip is to go to or from school or college."
#define kDescWork @"The primary reason for this bike trip is to go to or from business-related meeting, function, or work-related errand for your job."
#define kDescExercise @"The primary reason for this bike trip is exercise or biking for the sake of biking."
#define kDescSocial @"The primary reason for this bike trip is going to or from a social activity (e.g. at a friend's house, the park, a restaurant, the movies)."
#define kDescShopping @"The primary reason for this bike trip is to purchase or bring home goods or groceries."
#define kDescErrand @"The primary reason for this bike trip is to attend to personal business such as banking, doctor visit, going to the gym, etc."
#define kDescOther @"If none of the other reasons apply to this trip, you can enter trip comments after saving your trip to tell us more."
@interface CustomPickerDataSource : NSObject <UIPickerViewDataSource, UIPickerViewDelegate>
{
NSArray *customPickerArray;
id<UIPickerViewDelegate> parent;
NSInteger pickerCategory;
}
@property (nonatomic, retain) NSArray *customPickerArray;
@property (nonatomic, retain) NSArray *pickerTitles;
@property (nonatomic, retain) NSArray *pickerImages;
@property (nonatomic, retain) id<UIPickerViewDelegate> parent;
@end