CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

CMEqualizerIndicatorView 1.4

CMEqualizerIndicatorView 1.4

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2017

Maintained by Connor Montgomery.



  • By
  • Connor Montgomery

CMEqualizerIndicatorView is an OS X library used to visually indicate the play, pause, or stop state of audio. CMEqualizerIndicatorView is designable in Interface Builder for quicker mockups.

Getting Started

  • Download CMEqualizerIndicatorView and try the included example project.
  • Copy the CMEqualizerIndicatorView directory into your project
  • Import the header file at the top of your document, like so: #import "CMEqualizerIndicatorView.h"

Using CMEqualizerIndicatorView

Quick demonstration.

CMEqualizerIndicatorView *equalizerIndicatorView = [[CMEqualizerIndicatorView alloc] initWithFrame: CGRectMake(0,0,16,16)];
equlizerIndicatorView.tintColor = [NSColor blueColor];
[equalizerIndicatorView startAnimated:YES]; // audio begins playing
[equalizerIndicatorView pauseAnimated:YES]; // audio is paused
[equalizerIndicatorView stopAnimated:YES]; // audio ends playback

There's also an example project in the repo.

Demo

Check out this video demo.

Credits

CMEqualizerView is a fork of Alex Givens's AGEqualizerView for iOS.