├── .gitignore ├── AppledocSettings.plist ├── Demo ├── AppDelegate.h ├── AppDelegate.m ├── Demo-Info.plist ├── Demo-Prefix.pch ├── DemoSimpleTableViewController.h ├── DemoSimpleTableViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── JCMSegmentPageController.h ├── JCMSegmentPageController.m ├── JCMSegmentedPageControllerDemo.xcodeproj └── project.pbxproj ├── README.md ├── Screenshot.png └── doc └── html ├── Classes └── JCMSegmentPageController.html ├── Protocols └── JCMSegmentPageControllerDelegate.html ├── css ├── styles.css └── stylesPrint.css ├── hierarchy.html ├── img ├── button_bar_background.png ├── disclosure.png ├── disclosure_open.png ├── library_background.png └── title_background.png └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/.gitignore -------------------------------------------------------------------------------- /AppledocSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/AppledocSettings.plist -------------------------------------------------------------------------------- /Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/DemoSimpleTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/DemoSimpleTableViewController.h -------------------------------------------------------------------------------- /Demo/DemoSimpleTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/DemoSimpleTableViewController.m -------------------------------------------------------------------------------- /Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Demo/main.m -------------------------------------------------------------------------------- /JCMSegmentPageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/JCMSegmentPageController.h -------------------------------------------------------------------------------- /JCMSegmentPageController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/JCMSegmentPageController.m -------------------------------------------------------------------------------- /JCMSegmentedPageControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/JCMSegmentedPageControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/Screenshot.png -------------------------------------------------------------------------------- /doc/html/Classes/JCMSegmentPageController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/Classes/JCMSegmentPageController.html -------------------------------------------------------------------------------- /doc/html/Protocols/JCMSegmentPageControllerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/Protocols/JCMSegmentPageControllerDelegate.html -------------------------------------------------------------------------------- /doc/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/css/styles.css -------------------------------------------------------------------------------- /doc/html/css/stylesPrint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/css/stylesPrint.css -------------------------------------------------------------------------------- /doc/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/hierarchy.html -------------------------------------------------------------------------------- /doc/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/img/button_bar_background.png -------------------------------------------------------------------------------- /doc/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/img/disclosure.png -------------------------------------------------------------------------------- /doc/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/img/disclosure_open.png -------------------------------------------------------------------------------- /doc/html/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/img/library_background.png -------------------------------------------------------------------------------- /doc/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/img/title_background.png -------------------------------------------------------------------------------- /doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmendez/JCMSegmentPageController/HEAD/doc/html/index.html --------------------------------------------------------------------------------