JXDatePicker.h 528 B

123456789101112131415161718192021222324
  1. //
  2. // JXDatePicker.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 15-1-7.
  6. // Copyright (c) 2015年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXDatePicker : UIView{
  10. JXLabel* _sel;
  11. }
  12. @property(nonatomic,strong) UIDatePicker* datePicker;
  13. @property(nonatomic,weak) id delegate;
  14. @property(assign) SEL didSelect;
  15. @property(assign) SEL didCancel;
  16. @property(assign) SEL didChange;
  17. @property(nonatomic,strong) NSString* hint;
  18. //-(NSDate*)date;
  19. @property(nonatomic,strong) NSDate* date;
  20. @end