├── .gitignore ├── BPODial.podspec ├── BPODial.xcodeproj └── project.pbxproj ├── BPODial ├── BPOAppDelegate.h ├── BPOAppDelegate.m ├── BPODial-Info.plist ├── BPODial-Prefix.pch ├── BPODial │ ├── BPODial.h │ ├── BPODial.m │ ├── BPOSliderCell.h │ ├── BPOSliderCell.m │ ├── NSAffineTransform+Rotation.h │ ├── NSAffineTransform+Rotation.m │ ├── VectorMath.h │ └── VectorMath.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── LICENSE ├── Paintcode ├── BPO Dialknob.pcvd ├── BPODial Background.pcvd ├── BPODial Labels.pcvd └── BPODial Tick Mark.pcvd ├── README.md ├── screenshot1.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/.gitignore -------------------------------------------------------------------------------- /BPODial.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial.podspec -------------------------------------------------------------------------------- /BPODial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BPODial/BPOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPOAppDelegate.h -------------------------------------------------------------------------------- /BPODial/BPOAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPOAppDelegate.m -------------------------------------------------------------------------------- /BPODial/BPODial-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial-Info.plist -------------------------------------------------------------------------------- /BPODial/BPODial-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial-Prefix.pch -------------------------------------------------------------------------------- /BPODial/BPODial/BPODial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/BPODial.h -------------------------------------------------------------------------------- /BPODial/BPODial/BPODial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/BPODial.m -------------------------------------------------------------------------------- /BPODial/BPODial/BPOSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/BPOSliderCell.h -------------------------------------------------------------------------------- /BPODial/BPODial/BPOSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/BPOSliderCell.m -------------------------------------------------------------------------------- /BPODial/BPODial/NSAffineTransform+Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/NSAffineTransform+Rotation.h -------------------------------------------------------------------------------- /BPODial/BPODial/NSAffineTransform+Rotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/NSAffineTransform+Rotation.m -------------------------------------------------------------------------------- /BPODial/BPODial/VectorMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/VectorMath.h -------------------------------------------------------------------------------- /BPODial/BPODial/VectorMath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/BPODial/VectorMath.m -------------------------------------------------------------------------------- /BPODial/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /BPODial/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BPODial/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /BPODial/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/BPODial/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/LICENSE -------------------------------------------------------------------------------- /Paintcode/BPO Dialknob.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/Paintcode/BPO Dialknob.pcvd -------------------------------------------------------------------------------- /Paintcode/BPODial Background.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/Paintcode/BPODial Background.pcvd -------------------------------------------------------------------------------- /Paintcode/BPODial Labels.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/Paintcode/BPODial Labels.pcvd -------------------------------------------------------------------------------- /Paintcode/BPODial Tick Mark.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/Paintcode/BPODial Tick Mark.pcvd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/README.md -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYTEPOETS/BPODial/HEAD/screenshot2.png --------------------------------------------------------------------------------