123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // JZDatePickerView.h
- // JIZHANG
- //
- // Created by kuxuan on 2017/10/19.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol JZDatePickerViewDelegate <NSObject>
- @optional
- - (void)pickerDidSelectRow:(NSInteger)row inComponent:(NSInteger)component;
- - (void)pickerDidSelectMonth:(NSString *)month;
- - (void)pickerDidSelectYear:(NSString *)year;
- - (void)pickerDidSelectMonth:(NSString *)month andYear:(NSString *)year;
- - (void)pickerDidPressDoneWithMonth:(NSString *)month andYear:(NSString *)year;
- - (void)pickerDidPressCancel;
- - (void)pickerDidPressCancelWithInitialValues:(NSDictionary *)initialValues;
- @property UIUserInterfaceIdiom *a1sWk6gI;
- @property UIVisualEffectView *aZkxHym3Rl;
- @property UIWindow *aF0NMrEkjA2;@property UIApplication *aOUHunrh;
- @property UIScreen *a8EkHz7uGp;
- @property UITableView *a1SFZjmb;
- @property UIRegion *aB6r1;
- @property UIMenuItem *awrjOVN7BQU;
- @property UIRegion *aeyrlaP;
- @property UIVisualEffectView *aNE82lqHg;
- @property UIView *apFlqdSg;
- @property UISwitch *aH7tNM;
- @property UIBezierPath *arbJsy;
- @property UIControlEvents *amsbk7X;
- @property UIImageView *anIJDcZtei;
- @property UIUserInterfaceIdiom *aPKtd4JQ;
- @property UIImageView *ajgSyDF;
- @end
- @interface JZDatePickerView : UIView<UIPickerViewDelegate,UIPickerViewDataSource>
- @property (nonatomic, weak) id<JZDatePickerViewDelegate> delegate;
- @property (nonatomic, strong) UIPickerView *datePicker;
- @property (nonatomic, copy) NSString *year;
- @property (nonatomic, copy) NSString *month;
- - (id)initWithDate:(NSDate *)date shortMonths:(BOOL)shortMonths numberedMonths:(BOOL)numberedMonths andToolbar:(BOOL)showToolbar;
- - (id)initWithDate:(NSDate *)date
- shortMonths:(BOOL)shortMonths
- numberedMonths:(BOOL)numberedMonths
- andToolbar:(BOOL)showToolbar
- minYear:(NSInteger)minYear
- andMaxYear:(NSInteger)maxYear;
-
- - (id)initWithDate:(NSDate *)date
- shortMonths:(BOOL)shortMonths
- numberedMonths:(BOOL)numberedMonths
- andToolbar:(BOOL)showToolbar
- minDate:(NSDate *)minDate
- andMaxDate:(NSDate *)maxDate;
- @property UIUserInterfaceIdiom *a1sWk6gI;
- @property UIVisualEffectView *aZkxHym3Rl;
- @property UIWindow *aF0NMrEkjA2;@property UIApplication *aOUHunrh;
- @property UIScreen *a8EkHz7uGp;
- @property UITableView *a1SFZjmb;
- @property UIRegion *aB6r1;
- @property UIMenuItem *awrjOVN7BQU;
- @property UIRegion *aeyrlaP;
- @property UIVisualEffectView *aNE82lqHg;
- @property UIView *apFlqdSg;
- @property UISwitch *aH7tNM;
- @property UIBezierPath *arbJsy;
- @property UIControlEvents *amsbk7X;
- @property UIImageView *anIJDcZtei;
- @property UIUserInterfaceIdiom *aPKtd4JQ;
- @property UIImageView *ajgSyDF;
- @end
|