// // NYBasetjTimeVC.h // jiaPei // // Created by Ning.ge on 2023/6/8. // Copyright © 2023 JCZ. All rights reserved. // #import "RQCommonCollectionViewController.h" NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, TimeVCType) { TimeVCTypeTheory, // 普通理论 TimeVCTypeAJob, // 从业理论 }; @interface NYBasetjTimeVC : RQCommonCollectionViewController @property (nonatomic, copy) NSString *secondString; //vc理论类型 @property (nonatomic, assign) TimeVCType vcType; //暴露出去,让子类-赋值 @property (strong, nonatomic) UILabel *timeLabel; @property (strong, nonatomic) UIButton *on_offBtn; //计时事件 - (void)btnClick:(UIButton *)sender; @end NS_ASSUME_NONNULL_END