├── .gitignore ├── Default-568h@2x.png ├── JASidePanels.xcodeproj ├── .gitignore ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── JASidePanels ├── Demo │ ├── JAAppDelegate.h │ ├── JAAppDelegate.m │ ├── JACenterViewController.h │ ├── JACenterViewController.m │ ├── JADebugViewController.h │ ├── JADebugViewController.m │ ├── JALeftViewController.h │ ├── JALeftViewController.m │ ├── JARightViewController.h │ ├── JARightViewController.m │ ├── JASidePanels-Info.plist │ ├── JASidePanels-Prefix.pch │ └── main.m ├── Source │ ├── JASidePanelController.h │ ├── JASidePanelController.m │ ├── UIViewController+JASidePanel.h │ └── UIViewController+JASidePanel.m └── en.lproj │ └── InfoPlist.strings └── README.markdown /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /JASidePanels.xcodeproj/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /JASidePanels.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JASidePanels.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JASidePanels/Demo/JAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JAAppDelegate.h -------------------------------------------------------------------------------- /JASidePanels/Demo/JAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JAAppDelegate.m -------------------------------------------------------------------------------- /JASidePanels/Demo/JACenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JACenterViewController.h -------------------------------------------------------------------------------- /JASidePanels/Demo/JACenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JACenterViewController.m -------------------------------------------------------------------------------- /JASidePanels/Demo/JADebugViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JADebugViewController.h -------------------------------------------------------------------------------- /JASidePanels/Demo/JADebugViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JADebugViewController.m -------------------------------------------------------------------------------- /JASidePanels/Demo/JALeftViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JALeftViewController.h -------------------------------------------------------------------------------- /JASidePanels/Demo/JALeftViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JALeftViewController.m -------------------------------------------------------------------------------- /JASidePanels/Demo/JARightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JARightViewController.h -------------------------------------------------------------------------------- /JASidePanels/Demo/JARightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JARightViewController.m -------------------------------------------------------------------------------- /JASidePanels/Demo/JASidePanels-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JASidePanels-Info.plist -------------------------------------------------------------------------------- /JASidePanels/Demo/JASidePanels-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/JASidePanels-Prefix.pch -------------------------------------------------------------------------------- /JASidePanels/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Demo/main.m -------------------------------------------------------------------------------- /JASidePanels/Source/JASidePanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Source/JASidePanelController.h -------------------------------------------------------------------------------- /JASidePanels/Source/JASidePanelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Source/JASidePanelController.m -------------------------------------------------------------------------------- /JASidePanels/Source/UIViewController+JASidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Source/UIViewController+JASidePanel.h -------------------------------------------------------------------------------- /JASidePanels/Source/UIViewController+JASidePanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/JASidePanels/Source/UIViewController+JASidePanel.m -------------------------------------------------------------------------------- /JASidePanels/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotosleep/JASidePanels/HEAD/README.markdown --------------------------------------------------------------------------------