1234567891011121314151617181920212223 |
- //
- // SKInCallViewController+time.h
- // SikeyComm
- //
- // Created by 刘振兴 on 2025/2/14.
- // Copyright © 2025 BaH Cy. All rights reserved.
- //
- #import "SKInCallViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SKInCallViewController (time)
- @property(nonatomic, strong, nullable) NSTimer* mTimer;
- @property(nonatomic, assign) NSInteger mTimecost;
- - (void)startTimer;
- - (void)stopTimer;
- @end
- NS_ASSUME_NONNULL_END
|