1234567891011121314151617181920212223242526 |
- //
- // NYBasetjTimeVC.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/8.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYBasetjTimeVC : RQCommonCollectionViewController
- @property (nonatomic, copy) NSString *secondString;
- //暴露出去,让子类-赋值
- @property (strong, nonatomic) UILabel *timeLabel;
- @property (strong, nonatomic) UIButton *on_offBtn;
- //计时事件
- - (void)btnClick:(UIButton *)sender;
- @end
- NS_ASSUME_NONNULL_END
|