NAKPlaybackIndicatorContentView.h 748 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // NAKPlaybackIndicatorContentView.h
  3. // PlaybackIndicator
  4. //
  5. // Created by Yuji Nakayama on 1/28/14.
  6. // Copyright (c) 2014 Yuji Nakayama. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <QuartzCore/QuartzCore.h>
  10. #import "NAKPlaybackIndicatorViewStyle.h"
  11. /**
  12. This is an internal private class. Do not use this class directly.
  13. */
  14. @interface NAKPlaybackIndicatorContentView : UIView
  15. // We don't specify NS_DESIGNATED_INITIALIZER since this is an internal private class.
  16. - (instancetype)initWithStyle:(NAKPlaybackIndicatorViewStyle*)style;
  17. - (void)startOscillation;
  18. - (void)stopOscillation;
  19. - (BOOL)isOscillating;
  20. - (void)startDecay;
  21. - (void)stopDecay;
  22. @property (nonatomic, readonly) NAKPlaybackIndicatorViewStyle* style;
  23. @end