// // DateView.h // jiaPeiC // // Created by apple on 15/12/20. // Copyright © 2016年 JCZ. All rights reserved. // danson #import @interface DateView : UIView { UIDatePicker* picker; MyBlockType complete; NSDate* max,*min; } /**Require 0选择日期。 1选择时间。 */ @property(nonatomic,assign)int style; -(void)showWithComplete:(MyBlockType) comp; /** */ -(void)setMaxDate:(NSDate*)max MinDate:(NSDate*)min; @end