Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/12Rockets/VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider.
https://github.com/12Rockets/VolumeControl
Last synced: 7 days ago
JSON representation
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider.
- Host: GitHub
- URL: https://github.com/12Rockets/VolumeControl
- Owner: 12Rockets
- License: mit
- Created: 2015-11-17T13:09:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-16T15:23:31.000Z (over 7 years ago)
- Last Synced: 2024-08-15T00:20:03.413Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 614 KB
- Stars: 84
- Watchers: 7
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
- awesome-ios - VolumeControl - Custom volume control for iPhone featuring a well-designed round slider. (UI / Slider)
- awesome-ios-star - VolumeControl - Custom volume control for iPhone featuring a well-designed round slider. (UI / Slider)
README
#VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider.
## Preview
## Usage
```objc
// Include VolumeControl.h into your ViewController.
// Don’t forget to set your delegate:
@interface ViewController ()@property (nonatomic, strong)VolumeControl *control;
self.control = [[VolumeControl alloc] initWithCenter:CGPointMake(screen.size.width, screen.size.height)
withRadius:screen.size.width*0.50
withVolume:self.volume/100
withVolumeControlDelegate:self];
[self.myView addSubview: control];
// VolumeControl animates from the bottom-right corner of the screen thus it will need either the UIButton or UIView to show the controller.
- (IBAction)onVolumeButton:(id)sender {
[self.control setHidden:NO];
}
```
##Credit
Designed and developed by [12Rockets](http://12rockets.com/).###Development
* [Marko Cancar](https://github.com/marko-cancar)
###Design
* [Maja Savic](https://github.com/majasavic)
* [Nikola Zivanovic](https://github.com/therandoman)---
##Feedback
Send us your feedback at [email protected] or hit us up on [Twitter](https://twitter.com/TwelveRockets).## License
This projected is licensed under the terms of the MIT License (MIT) License. See LICENSE.txt for more details.