NYBasetjTimeVC.h 859 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #import <CoreTelephony/CTCallCenter.h>
  10. #import <CoreTelephony/CTCall.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. typedef NS_ENUM(NSUInteger, TimeVCType) {
  13. TimeVCTypeTheory, // 普通理论
  14. TimeVCTypeAJob, // 从业理论
  15. };
  16. @interface NYBasetjTimeVC : RQCommonCollectionViewController
  17. @property (nonatomic, strong) CTCallCenter *callCenter;
  18. @property (nonatomic, copy) NSString *secondString;
  19. //vc理论类型
  20. @property (nonatomic, assign) TimeVCType vcType;
  21. //暴露出去,让子类-赋值
  22. @property (strong, nonatomic) UILabel *timeLabel;
  23. @property (strong, nonatomic) UIButton *on_offBtn;
  24. //计时事件
  25. - (void)btnClick:(UIButton *)sender;
  26. @end
  27. NS_ASSUME_NONNULL_END