-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomPickerDataSource.h
executable file
·81 lines (71 loc) · 4.77 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
79
80
81
/** Reno Tracks, Copyright 2012, 2013 Hack4Reno
*
* @author Brad.Hellyar <[email protected]>
*
* Updated/Modified for Reno, Nevada app deployment. Based on the
* CycleTracks codebase for SFCTA, and the Atlanta Cycle app repo.
*
** 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]>
// 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 kDescBikeEvent @"The primary reason for this bike trip was an event such as a race, fund raiser, or scavenger hunt."
#define kDescScalleyCat @"The baddest, longest, toughest, drunkest, mayhem-est bike race in the world in the Biggest Little City in the World."
#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."
// Issue descriptions
#define kIssueDescPavementIssue @"Here’s a spot where the road needs to be repaired (pothole, rough concrete, gravel in the road, manhole cover, sewer grate)."
#define kIssueDescTrafficSignal @"Here’s a signal that you can’t activate with your bike."
#define kIssueDescEnforcement @"The bike lane is always blocked here, cars disobey \"no right on red\"… anything where the cops can help make cycling safer."
#define kIssueDescNeedParking @"Rack Em Up - future parking. You wish you had a bike rack at this spot to secure your bike."
#define kIssueDescBikeLaneIssue @"Where the bike lane ends (abruptly) or is too narrow (pesky parked cars)."
#define kIssueDescNoteThisSpot @"Anything else ripe for improvement: want a sharrow, a sign, a bike lane? Share the details."
#define kDescNoteThis @"Anything about this spot?"
// Asset descriptions
#define kAssetDescBikeParking @"Rack Em Up! Park your bike here and remember to secure it well! Please only include racks or other objects intended for bikes."
#define kAssetDescBikeShops @"Have a flat, a broken chain, or spongy brakes? Or do you need a bike to jump into this world of cycling in the first place? Here's a shop ready to help."
#define kAssetDescPublicRestrooms @"Help us make cycling mainstream… here’s a place to refresh yourself before you re-enter the fashionable world of Reno."
#define kAssetDescSecretPassage @"Here's an access point under the tracks, through the park, onto a trail, or over a ravine."
#define kAssetDescWaterFountains @"Here’s a spot to fill your bottle on those hot summer days… stay hydrated, people. We need you."
#define kAssetDescNoteThisSpot @"Anything else we should map to help your fellow cyclists? Share the details."
@interface CustomPickerDataSource : NSObject <UIPickerViewDataSource, UIPickerViewDelegate>
{
NSArray *customPickerArray;
id<UIPickerViewDelegate> parent;
NSInteger pickerCategory;
NSArray *travelTypeArray;
}
@property (nonatomic, strong) NSArray *customPickerArray;
@property (nonatomic, strong) id<UIPickerViewDelegate> parent;
@end