DateView.h 495 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // DateView.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 15/12/20.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. // danson
  8. #import <UIKit/UIKit.h>
  9. @interface DateView : UIView
  10. {
  11. UIDatePicker* picker;
  12. MyBlockType complete;
  13. NSDate* max,*min;
  14. }
  15. /**Require
  16. 0选择日期。
  17. 1选择时间。
  18. */
  19. @property(nonatomic,assign)int style;
  20. -(void)showWithComplete:(MyBlockType) comp;
  21. /**
  22. */
  23. -(void)setMaxDate:(NSDate*)max MinDate:(NSDate*)min;
  24. @end