1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // DateView.h
- // jiaPeiC
- //
- // Created by apple on 15/12/20.
- // Copyright © 2016年 JCZ. All rights reserved.
- // danson
- #import <UIKit/UIKit.h>
- @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
|