NYBasetjTimeVC.h 544 B

1234567891011121314151617181920212223242526
  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. @interface NYBasetjTimeVC : RQCommonCollectionViewController
  11. @property (nonatomic, copy) NSString *secondString;
  12. //暴露出去,让子类-赋值
  13. @property (strong, nonatomic) UILabel *timeLabel;
  14. @property (strong, nonatomic) UIButton *on_offBtn;
  15. //计时事件
  16. - (void)btnClick:(UIButton *)sender;
  17. @end
  18. NS_ASSUME_NONNULL_END