├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── VOXHistogramLevelsConverterTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── VOXHistogramView.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── VOXHistogramView-Example.xcscheme └── VOXHistogramView │ ├── Helpers │ ├── VOXJSONConverter.h │ ├── VOXJSONConverter.m │ ├── VOXPlayerWrapper.h │ └── VOXPlayerWrapper.m │ ├── LaunchScreen.xib │ ├── Main.storyboard │ ├── Resources │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── levels.json │ └── pink20silence20.mp3 │ ├── VOXAppDelegate.h │ ├── VOXAppDelegate.m │ ├── VOXHistogramView-Info.plist │ ├── VOXHistogramView-Prefix.pch │ ├── ViewControllers │ ├── VOXControlHistogramViewController.h │ ├── VOXControlHistogramViewController.m │ ├── VOXSimpleHistogramViewController.h │ ├── VOXSimpleHistogramViewController.m │ ├── VOXTableViewController.h │ └── VOXTableViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── Gif └── demo.gif ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Animator │ ├── VOXHistogramAnimator.h │ └── VOXHistogramAnimator.m │ ├── Categories │ ├── UIView+Autolayout.h │ └── UIView+Autolayout.m │ ├── Configurations │ ├── VOXHistogramRenderingConfiguration.h │ └── VOXHistogramRenderingConfiguration.m │ ├── LevelsConverter │ ├── VOXHistogramLevelsConverter.h │ └── VOXHistogramLevelsConverter.m │ ├── ProgressLine │ ├── VOXProgressLineView.h │ └── VOXProgressLineView.m │ ├── Rendering │ ├── VOXHistogramRenderer.h │ ├── VOXHistogramRenderer.m │ ├── VOXHistogramRenderingOperation.h │ └── VOXHistogramRenderingOperation.m │ ├── VOXHistogramControlView.h │ ├── VOXHistogramControlView.m │ ├── VOXHistogramView.h │ └── VOXHistogramView.m ├── README.md ├── VOXHistogramView.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/VOXHistogramLevelsConverterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/Tests/VOXHistogramLevelsConverterTests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/VOXHistogramView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/VOXHistogramView.xcodeproj/xcshareddata/xcschemes/VOXHistogramView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView.xcodeproj/xcshareddata/xcschemes/VOXHistogramView-Example.xcscheme -------------------------------------------------------------------------------- /Example/VOXHistogramView/Helpers/VOXJSONConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Helpers/VOXJSONConverter.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/Helpers/VOXJSONConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Helpers/VOXJSONConverter.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/Helpers/VOXPlayerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Helpers/VOXPlayerWrapper.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/Helpers/VOXPlayerWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Helpers/VOXPlayerWrapper.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/VOXHistogramView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Main.storyboard -------------------------------------------------------------------------------- /Example/VOXHistogramView/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VOXHistogramView/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/VOXHistogramView/Resources/levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Resources/levels.json -------------------------------------------------------------------------------- /Example/VOXHistogramView/Resources/pink20silence20.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/Resources/pink20silence20.mp3 -------------------------------------------------------------------------------- /Example/VOXHistogramView/VOXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/VOXAppDelegate.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/VOXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/VOXAppDelegate.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/VOXHistogramView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/VOXHistogramView-Info.plist -------------------------------------------------------------------------------- /Example/VOXHistogramView/VOXHistogramView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/VOXHistogramView-Prefix.pch -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXControlHistogramViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXControlHistogramViewController.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXControlHistogramViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXControlHistogramViewController.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXSimpleHistogramViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXSimpleHistogramViewController.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXSimpleHistogramViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXSimpleHistogramViewController.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXTableViewController.h -------------------------------------------------------------------------------- /Example/VOXHistogramView/ViewControllers/VOXTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/ViewControllers/VOXTableViewController.m -------------------------------------------------------------------------------- /Example/VOXHistogramView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/VOXHistogramView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Example/VOXHistogramView/main.m -------------------------------------------------------------------------------- /Gif/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Gif/demo.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/Animator/VOXHistogramAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Animator/VOXHistogramAnimator.h -------------------------------------------------------------------------------- /Pod/Classes/Animator/VOXHistogramAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Animator/VOXHistogramAnimator.m -------------------------------------------------------------------------------- /Pod/Classes/Categories/UIView+Autolayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Categories/UIView+Autolayout.h -------------------------------------------------------------------------------- /Pod/Classes/Categories/UIView+Autolayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Categories/UIView+Autolayout.m -------------------------------------------------------------------------------- /Pod/Classes/Configurations/VOXHistogramRenderingConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Configurations/VOXHistogramRenderingConfiguration.h -------------------------------------------------------------------------------- /Pod/Classes/Configurations/VOXHistogramRenderingConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Configurations/VOXHistogramRenderingConfiguration.m -------------------------------------------------------------------------------- /Pod/Classes/LevelsConverter/VOXHistogramLevelsConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/LevelsConverter/VOXHistogramLevelsConverter.h -------------------------------------------------------------------------------- /Pod/Classes/LevelsConverter/VOXHistogramLevelsConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/LevelsConverter/VOXHistogramLevelsConverter.m -------------------------------------------------------------------------------- /Pod/Classes/ProgressLine/VOXProgressLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/ProgressLine/VOXProgressLineView.h -------------------------------------------------------------------------------- /Pod/Classes/ProgressLine/VOXProgressLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/ProgressLine/VOXProgressLineView.m -------------------------------------------------------------------------------- /Pod/Classes/Rendering/VOXHistogramRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Rendering/VOXHistogramRenderer.h -------------------------------------------------------------------------------- /Pod/Classes/Rendering/VOXHistogramRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Rendering/VOXHistogramRenderer.m -------------------------------------------------------------------------------- /Pod/Classes/Rendering/VOXHistogramRenderingOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Rendering/VOXHistogramRenderingOperation.h -------------------------------------------------------------------------------- /Pod/Classes/Rendering/VOXHistogramRenderingOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/Rendering/VOXHistogramRenderingOperation.m -------------------------------------------------------------------------------- /Pod/Classes/VOXHistogramControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/VOXHistogramControlView.h -------------------------------------------------------------------------------- /Pod/Classes/VOXHistogramControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/VOXHistogramControlView.m -------------------------------------------------------------------------------- /Pod/Classes/VOXHistogramView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/VOXHistogramView.h -------------------------------------------------------------------------------- /Pod/Classes/VOXHistogramView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/Pod/Classes/VOXHistogramView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/README.md -------------------------------------------------------------------------------- /VOXHistogramView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coppertino/VOXHistogramView/HEAD/VOXHistogramView.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------