123456789101112131415161718192021222324 |
- //
- // JXDatePicker.h
- // shiku_im
- //
- // Created by flyeagleTang on 15-1-7.
- // Copyright (c) 2015年 Reese. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface JXDatePicker : UIView{
- JXLabel* _sel;
- }
- @property(nonatomic,strong) UIDatePicker* datePicker;
- @property(nonatomic,weak) id delegate;
- @property(assign) SEL didSelect;
- @property(assign) SEL didCancel;
- @property(assign) SEL didChange;
- @property(nonatomic,strong) NSString* hint;
- //-(NSDate*)date;
- @property(nonatomic,strong) NSDate* date;
- @end
|