No Description

NSTimer+Addition.h 320B

1234567891011121314151617
  1. //
  2. // NSTimer+Addition.h
  3. // PagedScrollView
  4. //
  5. // Created by 陈政 on 14-1-24.
  6. // Copyright (c) 2014年 Apple Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSTimer (Addition)
  10. - (void)pauseTimer;
  11. - (void)resumeTimer;
  12. - (void)resumeTimerAfterTimeInterval:(NSTimeInterval)interval;
  13. @end