DatePickerViewController.h 586 B

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