CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Apr 2017 |
Maintained 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.
CMEqualizerIndicatorView
directory into your project#import "CMEqualizerIndicatorView.h"
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.
Check out this video demo.
CMEqualizerView is a fork of Alex Givens's AGEqualizerView for iOS.