DateView.h 368 B

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