NYBasetjTimeVC.h 731 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // NYBasetjTimeVC.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/6/8.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCollectionViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, TimeVCType) {
  11. TimeVCTypeTheory, // 普通理论
  12. TimeVCTypeAJob, // 从业理论
  13. };
  14. @interface NYBasetjTimeVC : RQCommonCollectionViewController
  15. @property (nonatomic, copy) NSString *secondString;
  16. //vc理论类型
  17. @property (nonatomic, assign) TimeVCType vcType;
  18. //暴露出去,让子类-赋值
  19. @property (strong, nonatomic) UILabel *timeLabel;
  20. @property (strong, nonatomic) UIButton *on_offBtn;
  21. //计时事件
  22. - (void)btnClick:(UIButton *)sender;
  23. @end
  24. NS_ASSUME_NONNULL_END