| 12345678910111213141516171819 |
- //
- // DatePickerViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-23.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DatePickerViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UIDatePicker *datePicker;
- @property (strong,nonatomic) NSDate* date;
- @property (strong, nonatomic) IBOutlet UILabel *labelTime;
- @property UIDatePickerMode pickerMode;
- @property (strong,nonatomic)NSDateFormatter* formatter;
- @property (nonatomic , copy) void (^blk_Set)(NSString* date);
- @end
|