1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // DateTimePicker.h
| // CustomDateTimePicker
| //
| // Created by Coder on 4/2/14.
| // Copyright (c) 2014 AcademicSoftware. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface DateTimePicker : UIView {
| }
|
| @property (nonatomic, assign, readonly) UIDatePicker *picker;
|
| - (void) setMode: (UIDatePickerMode) mode;
| - (void) addTargetForDoneButton: (id) target action: (SEL) action;
| - (void) addTargetForCancelButton: (id) target action: (SEL) action;
|
| @end
|
|