NSTimer+TUISafe.h 379 B

1234567891011121314151617
  1. //
  2. // NSTimer+TUISafe.h
  3. // TUICore
  4. //
  5. // Created by wyl on 2022/7/5.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSTimer (TUISafe)
  11. + (NSTimer *)tui_scheduledTimerWithTimeInterval:(NSTimeInterval)interval repeats:(BOOL)repeats block:(void (^)(NSTimer *timer))block;
  12. @end
  13. NS_ASSUME_NONNULL_END