Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larsacus/LARSBar
An oddly-named UISlider subclass which mimics the EQ slider found on Twitter's #music app.
https://github.com/larsacus/LARSBar
Last synced: 3 months ago
JSON representation
An oddly-named UISlider subclass which mimics the EQ slider found on Twitter's #music app.
- Host: GitHub
- URL: https://github.com/larsacus/LARSBar
- Owner: larsacus
- License: mit
- Created: 2013-05-04T02:42:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-03-17T03:22:21.000Z (over 7 years ago)
- Last Synced: 2024-07-19T17:02:02.404Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 1.25 MB
- Stars: 113
- Watchers: 9
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LARSBar
===========A `UISlider` subclass mimicking the awesome EQ slider found on Twitter's #music app. Named like this because my friends kept calling it this - and I really can't come up with anything better.
You'll need to bring your own assets for the frame, track and slider thumb, or just use the ones I've created in the sample project - I don't care. I've included the PSD files.
Excuse the crummy gif screen capture quality, the performance is quite good and there are no gaps in the animation:
![LARSBar in action](Demo/Assets/toleqdemo.gif)## Interface
Pretty simple interface:``` lang:objective-c
/** The value for the left channel eq in the range of 0 to 1.
@warning This value is clipped at 1.
*/
@property (nonatomic, assign) CGFloat leftChannelLevel;/** The value for the right channel eq in the range of 0 to 1.
@warning This value is clipped at 1.
*/
@property (nonatomic, assign) CGFloat rightChannelLevel;/** The inactive color for the eq. This is the color that the eq light takes on past the right side of the slider thumb knob.
*/
@property (nonatomic, strong) UIColor *inactiveColor;/** The active color for the eq when it is available to be lit up. This is the color that the eq light takes on before the slider thumb knob.
*/
@property (nonatomic, strong) UIColor *activeColor;/** The EQ light glow colors. The number of light sections the light takes on depends on how many colors you pass in here.
*/
@property (nonatomic, copy) NSArray *glowColors;
```In addition to all of the above, since this is just a `UISlider` subclass, you can treat it just like you would a normal `UISlider` (Using `UIAppearance`, etc).
## License
MIT License. Go nuts.## Homepage
If you're not on github right now reading this, you can find the page here: https://github.com/larsacus/LARSBar## Other
Demo project uses [Novocaine](https://github.com/alexbw/novocaine) for audio input. Other than that - have fun.by _Lars_ ([@theonlylars](http://twitter.com/theonlylars))