1234567891011121314151617181920212223242526272829303132 |
- //
- // BUTimer.h
- // BUAdSDK
- //
- // Created by 李盛 on 2018/6/20.
- // Copyright © 2018年 bytedance. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BUTimer : NSObject
- @property (nonatomic, copy) NSString *runLoopMode;
- + (BUTimer *)timerWithTimeInterval:(NSTimeInterval)seconds
- target:(id)target
- selector:(SEL)aSelector
- repeats:(BOOL)repeats;
- - (BOOL)isValid;
- - (void)invalidate;
- - (BOOL)isScheduled;
- - (BOOL)scheduleNow;
- - (BOOL)pause;
- - (BOOL)resume;
- - (NSTimeInterval)initialTimeInterval;
- @end
- NS_ASSUME_NONNULL_END
|