├── LICENSE ├── MBDoubleSliderExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Viorel.xcuserdatad │ └── xcschemes │ ├── MBDoubleSliderExample.xcscheme │ └── xcschememanagement.plist ├── MBDoubleSliderExample ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Documents.png ├── Info.plist ├── MBCustomKnob.swift ├── MBDoubleSlider.swift ├── MBFilledView.swift ├── MBTransparentWindow.swift ├── ViewController.swift ├── example.png └── ibInspectable.png └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/LICENSE -------------------------------------------------------------------------------- /MBDoubleSliderExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MBDoubleSliderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MBDoubleSliderExample.xcodeproj/xcuserdata/Viorel.xcuserdatad/xcschemes/MBDoubleSliderExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample.xcodeproj/xcuserdata/Viorel.xcuserdatad/xcschemes/MBDoubleSliderExample.xcscheme -------------------------------------------------------------------------------- /MBDoubleSliderExample.xcodeproj/xcuserdata/Viorel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample.xcodeproj/xcuserdata/Viorel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MBDoubleSliderExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/AppDelegate.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MBDoubleSliderExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MBDoubleSliderExample/Documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/Documents.png -------------------------------------------------------------------------------- /MBDoubleSliderExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/Info.plist -------------------------------------------------------------------------------- /MBDoubleSliderExample/MBCustomKnob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/MBCustomKnob.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/MBDoubleSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/MBDoubleSlider.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/MBFilledView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/MBFilledView.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/MBTransparentWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/MBTransparentWindow.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/ViewController.swift -------------------------------------------------------------------------------- /MBDoubleSliderExample/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/example.png -------------------------------------------------------------------------------- /MBDoubleSliderExample/ibInspectable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/MBDoubleSliderExample/ibInspectable.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-Viorel/MBDoubleSliderExample/HEAD/README.md --------------------------------------------------------------------------------