NSTimer+addition.h 424 B

123456789101112131415161718192021
  1. //
  2. // NSTimer+addition.h
  3. // TGWebViewController
  4. //
  5. // Created by 赵群涛 on 2017/9/19.
  6. // Copyright © 2017年 QR. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSTimer (addition)
  10. /** 暂停时间 */
  11. - (void)tg_pauseTime;
  12. /** 获取内容所在当前时间 */
  13. - (void)tg_webPageTime;
  14. /** 当前时间 time 秒后的时间 */
  15. - (void)tg_webPageTimeWithTimeInterval:(NSTimeInterval)time;
  16. @end