├── .gitignore ├── LICENSE ├── RBVolumeButtons.podspec ├── VolumeSnap.xcodeproj └── project.pbxproj └── VolumeSnap ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── RBVolumeButtons.h ├── RBVolumeButtons.m ├── ViewController.h ├── ViewController.m ├── VolumeSnap-Info.plist ├── VolumeSnap-Prefix.pch ├── en.lproj ├── InfoPlist.strings └── MainStoryboard.storyboard └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/LICENSE -------------------------------------------------------------------------------- /RBVolumeButtons.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/RBVolumeButtons.podspec -------------------------------------------------------------------------------- /VolumeSnap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VolumeSnap/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/AppDelegate.h -------------------------------------------------------------------------------- /VolumeSnap/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/AppDelegate.m -------------------------------------------------------------------------------- /VolumeSnap/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/Default-568h@2x.png -------------------------------------------------------------------------------- /VolumeSnap/RBVolumeButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/RBVolumeButtons.h -------------------------------------------------------------------------------- /VolumeSnap/RBVolumeButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/RBVolumeButtons.m -------------------------------------------------------------------------------- /VolumeSnap/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/ViewController.h -------------------------------------------------------------------------------- /VolumeSnap/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/ViewController.m -------------------------------------------------------------------------------- /VolumeSnap/VolumeSnap-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/VolumeSnap-Info.plist -------------------------------------------------------------------------------- /VolumeSnap/VolumeSnap-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/VolumeSnap-Prefix.pch -------------------------------------------------------------------------------- /VolumeSnap/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VolumeSnap/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /VolumeSnap/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blladnar/RBVolumeButtons/HEAD/VolumeSnap/main.m --------------------------------------------------------------------------------