12345678910111213141516171819202122232425262728293031323334 |
- //
- // YMGuildManagementDatePickerViewController.h
- // MSYOUPAI
- //
- // Created by 夏军辉 on 2024/5/26.
- // Copyright © 2024 MS. All rights reserved.
- //
- NS_ASSUME_NONNULL_BEGIN
- @interface YMGuildManagementDatePickerViewController : UIViewController
- @property (nonatomic, strong) UIView *dismissView;
- @property (nonatomic, strong) UIView *contentView;
- @property (nonatomic, strong) UIView *timeSelView;
- @property (nonatomic, strong) UILabel *startLabel;
- @property (nonatomic, strong) UIButton *startButn;
- @property (nonatomic, strong) UILabel *endLabel;
- @property (nonatomic, strong) UIButton *endButn;
- @property (nonatomic, strong) UIDatePicker *datePicker;
- @property (nonatomic, strong) UIButton *confirmButn;
- @property (nonatomic, strong) NSDate *startDate;
- @property (nonatomic, strong) NSDate *endDate;
- @property (nonatomic, assign) BOOL isStart;
- @property (nonatomic, assign) BOOL isEnd;
- - (void)setStartTime:(NSString *)startTime;
- - (void)setEndTime:(NSString *)endTime;
- @end
- NS_ASSUME_NONNULL_END
|