├── Classes ├── NDRevealView.h ├── NDRevealView.m ├── NDRotator.h └── NDRotator.m ├── Images ├── ButtonBackground.png └── SelectedButtonBackground.png ├── NDRotatingControllerView.xcodeproj └── project.pbxproj ├── NDRotatingControllerView ├── NDRotatingControllerView-Info.plist ├── NDRotatingControllerView-Prefix.pch ├── NDRotatingControllerViewAppDelegate.h ├── NDRotatingControllerViewAppDelegate.m ├── RootViewController.h ├── RootViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib └── main.m ├── NDRotatingControllerViewTests ├── NDRotatingControllerViewTests-Info.plist ├── NDRotatingControllerViewTests.h ├── NDRotatingControllerViewTests.m └── en.lproj │ └── InfoPlist.strings ├── README └── Standard ├── StandardViewController.h ├── StandardViewController.m └── en.lproj └── StandardViewController.xib /Classes/NDRevealView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Classes/NDRevealView.h -------------------------------------------------------------------------------- /Classes/NDRevealView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Classes/NDRevealView.m -------------------------------------------------------------------------------- /Classes/NDRotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Classes/NDRotator.h -------------------------------------------------------------------------------- /Classes/NDRotator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Classes/NDRotator.m -------------------------------------------------------------------------------- /Images/ButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Images/ButtonBackground.png -------------------------------------------------------------------------------- /Images/SelectedButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Images/SelectedButtonBackground.png -------------------------------------------------------------------------------- /NDRotatingControllerView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NDRotatingControllerView/NDRotatingControllerView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/NDRotatingControllerView-Info.plist -------------------------------------------------------------------------------- /NDRotatingControllerView/NDRotatingControllerView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/NDRotatingControllerView-Prefix.pch -------------------------------------------------------------------------------- /NDRotatingControllerView/NDRotatingControllerViewAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/NDRotatingControllerViewAppDelegate.h -------------------------------------------------------------------------------- /NDRotatingControllerView/NDRotatingControllerViewAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/NDRotatingControllerViewAppDelegate.m -------------------------------------------------------------------------------- /NDRotatingControllerView/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/RootViewController.h -------------------------------------------------------------------------------- /NDRotatingControllerView/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/RootViewController.m -------------------------------------------------------------------------------- /NDRotatingControllerView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /NDRotatingControllerView/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /NDRotatingControllerView/en.lproj/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/en.lproj/RootViewController.xib -------------------------------------------------------------------------------- /NDRotatingControllerView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerView/main.m -------------------------------------------------------------------------------- /NDRotatingControllerViewTests/NDRotatingControllerViewTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerViewTests/NDRotatingControllerViewTests-Info.plist -------------------------------------------------------------------------------- /NDRotatingControllerViewTests/NDRotatingControllerViewTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerViewTests/NDRotatingControllerViewTests.h -------------------------------------------------------------------------------- /NDRotatingControllerViewTests/NDRotatingControllerViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/NDRotatingControllerViewTests/NDRotatingControllerViewTests.m -------------------------------------------------------------------------------- /NDRotatingControllerViewTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/README -------------------------------------------------------------------------------- /Standard/StandardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Standard/StandardViewController.h -------------------------------------------------------------------------------- /Standard/StandardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Standard/StandardViewController.m -------------------------------------------------------------------------------- /Standard/en.lproj/StandardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanday/ndrotator/HEAD/Standard/en.lproj/StandardViewController.xib --------------------------------------------------------------------------------