├── Deceleration.xcodeproj └── project.pbxproj ├── Deceleration ├── AppDelegate.h ├── AppDelegate.m ├── ColorWheel1.jpg ├── Deceleration-Info.plist ├── Deceleration-Prefix.pch ├── DecelerationBehaviour.h ├── DecelerationBehaviour.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Library │ ├── ArrayUtils │ │ ├── ArrayUtils.h │ │ └── ArrayUtils.m │ └── ViewUtils │ │ ├── ViewUtils.h │ │ └── ViewUtils.m ├── RotatingWheel.h ├── RotatingWheel.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib └── main.m └── README.md /Deceleration.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Deceleration/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/AppDelegate.h -------------------------------------------------------------------------------- /Deceleration/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/AppDelegate.m -------------------------------------------------------------------------------- /Deceleration/ColorWheel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/ColorWheel1.jpg -------------------------------------------------------------------------------- /Deceleration/Deceleration-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Deceleration-Info.plist -------------------------------------------------------------------------------- /Deceleration/Deceleration-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Deceleration-Prefix.pch -------------------------------------------------------------------------------- /Deceleration/DecelerationBehaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/DecelerationBehaviour.h -------------------------------------------------------------------------------- /Deceleration/DecelerationBehaviour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/DecelerationBehaviour.m -------------------------------------------------------------------------------- /Deceleration/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Default-568h@2x.png -------------------------------------------------------------------------------- /Deceleration/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Default.png -------------------------------------------------------------------------------- /Deceleration/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Default@2x.png -------------------------------------------------------------------------------- /Deceleration/Library/ArrayUtils/ArrayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Library/ArrayUtils/ArrayUtils.h -------------------------------------------------------------------------------- /Deceleration/Library/ArrayUtils/ArrayUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Library/ArrayUtils/ArrayUtils.m -------------------------------------------------------------------------------- /Deceleration/Library/ViewUtils/ViewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Library/ViewUtils/ViewUtils.h -------------------------------------------------------------------------------- /Deceleration/Library/ViewUtils/ViewUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/Library/ViewUtils/ViewUtils.m -------------------------------------------------------------------------------- /Deceleration/RotatingWheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/RotatingWheel.h -------------------------------------------------------------------------------- /Deceleration/RotatingWheel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/RotatingWheel.m -------------------------------------------------------------------------------- /Deceleration/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/ViewController.h -------------------------------------------------------------------------------- /Deceleration/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/ViewController.m -------------------------------------------------------------------------------- /Deceleration/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Deceleration/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Deceleration/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/Deceleration/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajendrahn/RotationWheelAndDecelerationBehaviour/HEAD/README.md --------------------------------------------------------------------------------