forked from sfcta/CycleTracks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomPickerDataSource.h
51 lines (45 loc) · 2.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
/** CycleTracks, Copyright 2009-2013 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.h
// CycleTracks
//
// Copyright 2009-2013 SFCTA. All rights reserved.
// Written by Matt Paul <mattpaul@mopimp.com> on 9/22/09.
// For more information on the project,
// e-mail Elizabeth Sall at the SFCTA <elizabeth.sall@sfcta.org>
// 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;
}
@property (nonatomic, retain) NSArray *customPickerArray;
@property (nonatomic, retain) id<UIPickerViewDelegate> parent;
@end