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