YMGuildManagementDatePickerViewController.h 1015 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // YMGuildManagementDatePickerViewController.h
  3. // MSYOUPAI
  4. //
  5. // Created by 夏军辉 on 2024/5/26.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YMGuildManagementDatePickerViewController : UIViewController
  10. @property (nonatomic, strong) UIView *dismissView;
  11. @property (nonatomic, strong) UIView *contentView;
  12. @property (nonatomic, strong) UIView *timeSelView;
  13. @property (nonatomic, strong) UILabel *startLabel;
  14. @property (nonatomic, strong) UIButton *startButn;
  15. @property (nonatomic, strong) UILabel *endLabel;
  16. @property (nonatomic, strong) UIButton *endButn;
  17. @property (nonatomic, strong) UIDatePicker *datePicker;
  18. @property (nonatomic, strong) UIButton *confirmButn;
  19. @property (nonatomic, strong) NSDate *startDate;
  20. @property (nonatomic, strong) NSDate *endDate;
  21. @property (nonatomic, assign) BOOL isStart;
  22. @property (nonatomic, assign) BOOL isEnd;
  23. - (void)setStartTime:(NSString *)startTime;
  24. - (void)setEndTime:(NSString *)endTime;
  25. @end
  26. NS_ASSUME_NONNULL_END