├── .gitignore ├── Demo ├── Default-568h@2x.png ├── Demo.xcodeproj │ └── project.pbxproj └── Demo │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── GCArraySectionController.h │ ├── GCArraySectionController.m │ ├── GCCustomSectionController.h │ ├── GCCustomSectionController.m │ ├── GCEmptySectionController.h │ ├── GCEmptySectionController.m │ ├── GCSimpleSectionController.h │ ├── GCSimpleSectionController.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib │ └── main.m ├── GCRetractableSectionController ├── GCRetractableSectionController.h ├── GCRetractableSectionController.m └── Images │ ├── DownAccessory.png │ ├── DownAccessory@2x.png │ ├── DownAccessoryWhite.png │ ├── DownAccessoryWhite@2x.png │ ├── UpAccessory.png │ ├── UpAccessory@2x.png │ ├── UpAccessoryWhite.png │ └── UpAccessoryWhite@2x.png ├── LICENSE.txt └── README.textile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/Demo/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/DemoAppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/DemoAppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/GCArraySectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCArraySectionController.h -------------------------------------------------------------------------------- /Demo/Demo/GCArraySectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCArraySectionController.m -------------------------------------------------------------------------------- /Demo/Demo/GCCustomSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCCustomSectionController.h -------------------------------------------------------------------------------- /Demo/Demo/GCCustomSectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCCustomSectionController.m -------------------------------------------------------------------------------- /Demo/Demo/GCEmptySectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCEmptySectionController.h -------------------------------------------------------------------------------- /Demo/Demo/GCEmptySectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCEmptySectionController.m -------------------------------------------------------------------------------- /Demo/Demo/GCSimpleSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCSimpleSectionController.h -------------------------------------------------------------------------------- /Demo/Demo/GCSimpleSectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/GCSimpleSectionController.m -------------------------------------------------------------------------------- /Demo/Demo/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/RootViewController.h -------------------------------------------------------------------------------- /Demo/Demo/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/RootViewController.m -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/en.lproj/RootViewController.xib -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /GCRetractableSectionController/GCRetractableSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/GCRetractableSectionController.h -------------------------------------------------------------------------------- /GCRetractableSectionController/GCRetractableSectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/GCRetractableSectionController.m -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/DownAccessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/DownAccessory.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/DownAccessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/DownAccessory@2x.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/DownAccessoryWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/DownAccessoryWhite.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/DownAccessoryWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/DownAccessoryWhite@2x.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/UpAccessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/UpAccessory.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/UpAccessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/UpAccessory@2x.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/UpAccessoryWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/UpAccessoryWhite.png -------------------------------------------------------------------------------- /GCRetractableSectionController/Images/UpAccessoryWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/GCRetractableSectionController/Images/UpAccessoryWhite@2x.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcamp/GCRetractableSectionController/HEAD/README.textile --------------------------------------------------------------------------------