123456789101112131415161718192021 |
- //
- // KWTimeEndView.h
- // westkissMob
- //
- // Created by iOS on 2022/9/6.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KWTimeEndView : UIView
- @property (nonatomic, assign) NSTimeInterval time;
- - (void)startTimer;
- - (void)stopTimer;
- @end
- NS_ASSUME_NONNULL_END
|