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