├── .gitignore ├── .travis.yml ├── BufferSlider.podspec ├── Example ├── BufferSlider.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── BufferSlider-Example.xcscheme ├── BufferSlider.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── BufferSlider │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── BufferSlider.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── BufferSlider │ │ ├── BufferSlider-Info.plist │ │ ├── BufferSlider-dummy.m │ │ ├── BufferSlider-prefix.pch │ │ ├── BufferSlider-umbrella.h │ │ ├── BufferSlider.debug.xcconfig │ │ ├── BufferSlider.modulemap │ │ ├── BufferSlider.release.xcconfig │ │ ├── BufferSlider.xcconfig │ │ └── Info.plist │ │ ├── Pods-BufferSlider_Example │ │ ├── Info.plist │ │ ├── Pods-BufferSlider_Example-Info.plist │ │ ├── Pods-BufferSlider_Example-acknowledgements.markdown │ │ ├── Pods-BufferSlider_Example-acknowledgements.plist │ │ ├── Pods-BufferSlider_Example-dummy.m │ │ ├── Pods-BufferSlider_Example-frameworks.sh │ │ ├── Pods-BufferSlider_Example-resources.sh │ │ ├── Pods-BufferSlider_Example-umbrella.h │ │ ├── Pods-BufferSlider_Example.debug.xcconfig │ │ ├── Pods-BufferSlider_Example.modulemap │ │ └── Pods-BufferSlider_Example.release.xcconfig │ │ └── Pods-BufferSlider_Tests │ │ ├── Info.plist │ │ ├── Pods-BufferSlider_Tests-Info.plist │ │ ├── Pods-BufferSlider_Tests-acknowledgements.markdown │ │ ├── Pods-BufferSlider_Tests-acknowledgements.plist │ │ ├── Pods-BufferSlider_Tests-dummy.m │ │ ├── Pods-BufferSlider_Tests-frameworks.sh │ │ ├── Pods-BufferSlider_Tests-resources.sh │ │ ├── Pods-BufferSlider_Tests-umbrella.h │ │ ├── Pods-BufferSlider_Tests.debug.xcconfig │ │ ├── Pods-BufferSlider_Tests.modulemap │ │ └── Pods-BufferSlider_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── BufferSlider.swift ├── README.md ├── _Pods.xcodeproj ├── screenshot.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/.travis.yml -------------------------------------------------------------------------------- /BufferSlider.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/BufferSlider.podspec -------------------------------------------------------------------------------- /Example/BufferSlider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/BufferSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BufferSlider.xcodeproj/xcshareddata/xcschemes/BufferSlider-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider.xcodeproj/xcshareddata/xcschemes/BufferSlider-Example.xcscheme -------------------------------------------------------------------------------- /Example/BufferSlider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BufferSlider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/BufferSlider/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/AppDelegate.swift -------------------------------------------------------------------------------- /Example/BufferSlider/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/BufferSlider/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/BufferSlider/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/BufferSlider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/Info.plist -------------------------------------------------------------------------------- /Example/BufferSlider/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/BufferSlider/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/BufferSlider.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Local Podspecs/BufferSlider.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/BufferSlider.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/BufferSlider.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BufferSlider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/BufferSlider/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Example/Pods-BufferSlider_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Pods/Target Support Files/Pods-BufferSlider_Tests/Pods-BufferSlider_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/BufferSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/Pod/Classes/BufferSlider.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/BufferSlider/HEAD/screenshot2.png --------------------------------------------------------------------------------